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

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