source: branches/version-2_12-multilang/data/Smarty/templates/admin/basis/delivery.tpl @ 22391

Revision 22391, 3.5 KB checked in by m_uehara, 11 years ago (diff)

#2060 メッセージIDの振り直し

  • 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<input type="hidden" name="mode" value="edit" />
28<input type="hidden" name="deliv_id" value="" />
29<div id="basis" class="contents-main">
30    <div class="btn">
31        <ul>
32            <li><a class="btn-action" href="javascript:;" name="subm2" onclick="fnChangeAction('./delivery_input.php'); fnModeSubmit('pre_edit','',''); return false;">
33                <span class="btn-next">
34                    <!--{if $smarty.const.INPUT_DELIV_FEE}-->
35                        <!--{t string="tpl_Add delivery method/delivery charge_01"}-->
36                    <!--{else}-->
37                        <!--{t string="tpl_Enter delivery method_01"}-->
38                    <!--{/if}-->
39                </span>
40                </a>
41            </li>
42        </ul>
43    </div>
44    <table class="list">
45        <col width="35%" />
46        <col width="30%" />
47        <col width="10%" />
48        <col width="10%" />
49        <col width="15%" />
50        <tr>
51            <th><!--{t string="t_Delivery company_01"}--></th>
52            <th><!--{t string="tpl_Name_01"}--></th>
53            <th><!--{t string="tpl_Edit_01"}--></th>
54            <th><!--{t string="tpl_Remove_01"}--></th>
55            <th><!--{t string="tpl_Move_01"}--></th>
56        </tr>
57        <!--{section name=cnt loop=$arrDelivList}-->
58            <tr>
59                <td><!--{$arrDelivList[cnt].name|h}--></td>
60                <td><!--{$arrDelivList[cnt].service_name|h}--></td>
61                <td align="center"><a href="?" onclick="fnChangeAction('./delivery_input.php'); fnModeSubmit('pre_edit', 'deliv_id', <!--{$arrDelivList[cnt].deliv_id}-->); return false;">
62                    <!--{t string="tpl_Edit_01"}--></a></td>
63                <td align="center"><a href="?" onclick="fnModeSubmit('delete', 'deliv_id', <!--{$arrDelivList[cnt].deliv_id}-->); return false;">
64                    <!--{t string="tpl_Remove_01"}--></a></td>
65                <td align="center">
66                <!--{if $smarty.section.cnt.iteration != 1}-->
67                <a href="?" onclick="fnModeSubmit('up','deliv_id', '<!--{$arrDelivList[cnt].deliv_id}-->'); return false;"><!--{t string="tpl_077"}--></a>
68                <!--{/if}-->
69                <!--{if $smarty.section.cnt.iteration != $smarty.section.cnt.last}-->
70                <a href="?" onclick="fnModeSubmit('down','deliv_id', '<!--{$arrDelivList[cnt].deliv_id}-->'); return false;"><!--{t string="tpl_078"}--></a>
71                <!--{/if}-->
72                </td>
73            </tr>
74        <!--{/section}-->
75    </table>
76</div>
77</form>
Note: See TracBrowser for help on using the repository browser.