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

Revision 22391, 5.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="./payment_input.php" enctype="multipart/form-data">
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="payment_id" value="<!--{$tpl_payment_id}-->" />
29<input type="hidden" name="image_key" value="" />
30<input type="hidden" name="fix" value="<!--{$arrForm.fix.value}-->" />
31<!--{foreach key=key item=item from=$arrHidden}-->
32<input type="hidden" name="<!--{$key}-->" value="<!--{$item|h}-->" />
33<!--{/foreach}-->
34<input type="hidden" name="charge_flg" value="<!--{$charge_flg}-->" />
35<div id="basis" class="contents-main">
36    <h2><!--{t string="tpl_079"}--></h2>
37
38        <table class="form">
39        <col width="20%" />
40        <col width="80%" />
41            <tr>
42                <th><!--{t string="tpl_Payment method<span class='attention'> *</span>_01" escape="none"}--></th>
43                <td>
44                    <!--{assign var=key value="payment_method"}-->
45                    <span class="attention"><!--{$arrErr[$key]}--></span>
46                    <input type="text" name="<!--{$arrForm[$key].keyname}-->" value="<!--{$arrForm[$key].value|h}-->" size="30" class="box30" maxlength="<!--{$arrForm[$key].length}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" />
47                </td>
48            </tr>
49            <tr>
50                <th><!--{t string="tpl_080_1" escape="none"}--></th>
51                <td>
52                    <!--{if $charge_flg == 2}-->
53                        <!--{t string="tpl_081"}-->
54                    <!--{else}-->
55                        <!--{assign var=key value="charge"}-->
56                        <span class="attention"><!--{$arrErr[$key]}--></span>
57                        <!--{t string="currency_prefix"}-->
58                        <input type="text" name="<!--{$arrForm[$key].keyname}-->" value="<!--{$arrForm[$key].value|h}-->" size="10" class="box10" maxlength="<!--{$arrForm[$key].length}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" />
59                        <!--{t string="currency_suffix"}-->
60                    <!--{/if}-->
61                </td>
62            </tr>
63            <tr>
64                <th><!--{t string="tpl_082" escape="none"}--></th>
65                <td>
66                    <!--{assign var=key_from value="rule_max"}-->
67                    <!--{assign var=key_to value="upper_rule"}-->
68                    <span class="attention"><!--{$arrErr[$key_from]}--></span>
69                    <span class="attention"><!--{$arrErr[$key_to]}--></span>
70                    <!--{t string="currency_prefix"}-->
71                    <input type="text" name="<!--{$arrForm[$key_from].keyname}-->" value="<!--{$arrForm[$key_from].value|h}-->" size="10" class="box10" maxlength="<!--{$arrForm[$key_from].length}-->" style="<!--{$arrErr[$key_from]|sfGetErrorColor}-->" />
72                    <!--{t string="currency_suffix"}-->
73                    <!--{t string="-"}-->
74                    <!--{t string="currency_prefix"}-->
75                    <input type="text" name="<!--{$arrForm[$key_to].keyname}-->" value="<!--{$arrForm[$key_to].value|h}-->" size="10" class="box10" maxlength="<!--{$arrForm[$key_to].length}-->" style="<!--{$arrErr[$key_to]|sfGetErrorColor}-->" />
76                    <!--{t string="currency_suffix"}-->
77                </td>
78            </tr>
79            <tr>
80                <th><!--{t string="tpl_083"}--></th>
81                <td>
82                    <!--{assign var=key value="payment_image"}-->
83                    <span class="attention"><!--{$arrErr[$key]}--></span>
84                    <!--{if $arrFile[$key].filepath != ""}-->
85                    <img src="<!--{$arrFile[$key].filepath}-->" alt="<!--{$arrForm.name|h}-->"><br /><a href="" onclick="fnModeSubmit('delete_image', 'image_key', '<!--{$key}-->'); return false;"><!--{t string="tpl_084"}--></a><br />
86                    <!--{/if}-->
87                    <input type="file" name="<!--{$key}-->" style="<!--{$arrErr[$key]|sfGetErrorColor}-->" />
88                    <a class="btn-normal" href="javascript:;" name="btn" onclick="fnModeSubmit('upload_image', 'image_key', '<!--{$key}-->'); return false;"><!--{t string="tpl_085"}--></a>
89                </td>
90            </tr>
91        </table>
92
93    <div class="btn-area">
94        <ul>
95            <li><a class="btn-action" href="javascript:;" onclick="location.href='./payment.php';"><span class="btn-prev"><!--{t string="tpl_Return to previous page_01"}--></span></a></li>
96            <li><a class="btn-action" href="javascript:;" onclick="fnFormModeSubmit('form1', 'edit', '', ''); return false;"><span class="btn-next"><!--{t string="tpl_Save and continue_01"}--></span></a></li>
97        </ul>
98    </div>
99</div>
100</form>
Note: See TracBrowser for help on using the repository browser.