source: branches/version-2_12-multilang/data/Smarty/templates/admin/mail/template.tpl @ 22427

Revision 22427, 2.7 KB checked in by adachi, 11 years ago (diff)

#2060 メッセージIDの振り直し:tpl_304 - tpl360

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2012 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23*}-->
24
25<form name="form1" id="form1" method="post" action="?">
26<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
27<div class="btn">
28    <a class="btn-action" href="./template_input.php"><span class="btn-next"><!--{t string="tpl_Add template_01"}--></span></a>
29</div>
30<!--{if count($arrTemplates) > 0}-->
31<div id="mail" class="contents-main">
32    <table class="list center">
33    <col width="15%" />
34    <col width="35%" />
35    <col width="20%" />
36    <col width="10%" />
37    <col width="10%" />
38    <col width="10%" />
39        <tr>
40            <th><!--{t string="tpl_Creation date_01"}--></th>
41            <th><!--{t string="tpl_Subject_01"}--></th>
42            <th><!--{t string="tpl_E-mail format_01"}--></th>
43            <th><!--{t string="tpl_Edit_01"}--></th>
44            <th><!--{t string="tpl_Remove_01"}--></th>
45            <th><!--{t string="tpl_Preview_01"}--></th>
46        </tr>
47        <!--{section name=data loop=$arrTemplates}-->
48        <tr>
49            <td><!--{$arrTemplates[data].create_date|date_format:'%Y/%m/%d'|h}--></td>
50            <td class="left"><!--{$arrTemplates[data].subject|h}--></td>
51            <!--{assign var=type value=$arrTemplates[data].mail_method|h}-->
52            <td><!--{$arrMagazineType[$type]}--></td>
53            <td><a href="./template_input.php?mode=edit&amp;template_id=<!--{$arrTemplates[data].template_id}-->"><!--{t string="tpl_Edit_01"}--></a></td>
54            <td><a href="#" onclick="fnDelete('?mode=delete&amp;id=<!--{$arrTemplates[data].template_id}-->'); return false;"><!--{t string="tpl_Remove_01"}--></a></td>
55            <td><a href="#" onclick="win03('./preview.php?mode=template&amp;template_id=<!--{$arrTemplates[data].template_id}-->','preview','650','700'); return false;" target="_blank"><!--{t string="tpl_Preview_01"}--></a></td>
56        </tr>
57        <!--{/section}-->
58    </table>
59</div>
60<!--{/if}-->
61</form>
Note: See TracBrowser for help on using the repository browser.