source: branches/version-2_13-dev/data/Smarty/templates/admin/mail/template.tpl @ 22954

Revision 22954, 2.6 KB checked in by Seasoft, 11 years ago (diff)

#2059 (HTML構文誤り for 2.13.0)

  • 閉じ漏れ

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • インデント
  • wordwrap の引数

#2140 (標準テンプレートのカスタマイズ性を高める)

  • インデント
  • 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-2013 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">テンプレートを新規入力</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>作成日</th>
41                <th>subject</th>
42                <th>メール形式</th>
43                <th>編集</th>
44                <th>削除</th>
45                <th>プレビュー</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}-->">編集</a></td>
54                <td><a href="#" onclick="fnDelete('?mode=delete&amp;id=<!--{$arrTemplates[data].template_id}-->'); return false;">削除</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">プレビュー</a></td>
56            </tr>
57            <!--{/section}-->
58        </table>
59    </div>
60    <!--{/if}-->
61</form>
Note: See TracBrowser for help on using the repository browser.