source: branches/version-2_12-dev/data/Smarty/templates/admin/system/editdb.tpl @ 22572

Revision 22572, 3.1 KB checked in by Qwert, 11 years ago (diff)

#2153 (各種テンプレート修正)

管理画面のデザイン管理・システム設定・オーナーズストアの直せそうな範囲を修正。管理画面のonClickをonclickに修正。

  • 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="index_form" method="post" action="?">
26    <input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
27    <input type="hidden" name="mode" value="confirm" />
28    <div class="btn">
29        <a class="btn-action" href="javascript:;" onclick="fnFormModeSubmit('index_form', 'confirm', '', '');"><span class="btn-next">変更する</span></a>
30    </div>
31    <table class="list">
32        <col width="5%" />
33        <col width="5%" />
34        <col width="25%" />
35        <col width="25%" />
36        <col width="40%" />
37        <tr>
38            <th colspan="2">インデックス</th>
39            <th rowspan="2">テーブル名</th>
40            <th rowspan="2">カラム名</th>
41            <th rowspan="2">説明</th>
42        </tr>
43        <tr>
44            <th>ON</th>
45            <th>OFF</th>
46        </tr>
47
48        <!--{section name=cnt loop=$arrForm}-->
49            <tr>
50                <td class="center">
51                    <input type="hidden" name="table_name[<!--{$smarty.section.cnt.iteration}-->]" value="<!--{$arrForm[cnt].table_name}-->" />
52                    <input type="hidden" name="column_name[<!--{$smarty.section.cnt.iteration}-->]" value="<!--{$arrForm[cnt].column_name}-->" />
53                    <input type="hidden" name="indexflag[<!--{$smarty.section.cnt.iteration}-->]" value="<!--{$arrForm[cnt].indexflag}-->" />
54                    <input type="radio" name="indexflag_new[<!--{$smarty.section.cnt.iteration}-->]" value="1" <!--{if $arrForm[cnt].indexflag == "1"}-->checked="checked"<!--{/if}--> />
55                </td>
56                <td class="center"><input type="radio" name="indexflag_new[<!--{$smarty.section.cnt.iteration}-->]" value="" <!--{if $arrForm[cnt].indexflag != "1"}-->checked="checked"<!--{/if}--> /></td>
57                <th class="column"><!--{$arrForm[cnt].table_name}--></th>
58                <th class="column"><!--{$arrForm[cnt].column_name}--></th>
59                <td><!--{$arrForm[cnt].recommend_comment}--></td>
60            </tr>
61        <!--{/section}-->
62    </table>
63
64    <a class="btn-action" href="javascript:;" onclick="fnFormModeSubmit('index_form', 'confirm', '', ''); return false;"><span class="btn-next">変更する</span></a>
65</form>
Note: See TracBrowser for help on using the repository browser.