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

Revision 19977, 4.6 KB checked in by kotani, 13 years ago (diff)

#280 管理画面>システム設定>メンバー管理 の「稼働・非稼働」を「新規登録・編集画面」で設定するように変更。

  • Property svn:eol-style set to LF
  • 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<!--{include file="`$smarty.const.TEMPLATE_ADMIN_REALDIR`admin_popup_header.tpl"}-->
25
26<script type="text/javascript">
27<!--
28self.moveTo(20,20);self.focus();
29//-->
30</script>
31
32<form name="form1" id="form1" method="post" action="" onsubmit="return fnRegistMember();">
33<input type="hidden" name="mode" value="<!--{$tpl_mode|h}-->">
34<input type="hidden" name="member_id" value="<!--{$tpl_member_id|h}-->">
35<input type="hidden" name="pageno" value="<!--{$tpl_pageno|h}-->">
36<input type="hidden" name="old_login_id" value="<!--{$tpl_old_login_id|h}-->">
37<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid|h}-->">
38<h2>メンバー登録/編集</h2>
39
40<table>
41    <colgroup width="20%">
42    <colgroup width="80%">
43  <tr>
44    <th>名前</th>
45    <td>
46      <!--{if $arrErr.name}--><span class="attention"><!--{$arrErr.name}--></span><!--{/if}-->
47      <input type="text" name="name" size="30" class="box30" value="<!--{$arrForm.name}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" />
48      <span class="attention">※必須入力</span>
49    </td>
50  </tr>
51  <tr>
52    <th>所属</th>
53    <td>
54      <!--{if $arrErr.department}--><span class="attention"><!--{$arrErr.department}--></span><!--{/if}-->
55      <input type="text" name="department" size="30" class="box30" value="<!--{$arrForm.department}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" />
56    </td>
57  </tr>
58  <tr>
59    <th>ログインID</th>
60    <td>
61      <!--{if $arrErr.login_id}--><span class="attention"><!--{$arrErr.login_id}--></span><!--{/if}-->
62      <input type="text" name="login_id" size="20" class="box20"  value="<!--{$arrForm.login_id}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->"/>
63      <span class="attention">※必須入力</span><br />
64      ※半角英数字<!--{$smarty.const.ID_MIN_LEN}-->~<!--{$smarty.const.ID_MAX_LEN}-->文字
65    </td>
66  </tr>
67  <tr>
68    <th>パスワード</th>
69    <td>
70      <!--{if $arrErr.password}--><span class="attention"><!--{$arrErr.password}--></span><!--{/if}-->
71      <input type="password" name="password" size="20" class="box20" value="<!--{$arrForm.password}-->" onfocus="<!--{$tpl_onfocus}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->"/>
72      <span class="attention">※必須入力</span><br />
73      ※半角英数字<!--{$smarty.const.ID_MIN_LEN}-->~<!--{$smarty.const.ID_MAX_LEN}-->文字
74  </td>
75  </tr>
76  <tr>
77    <th>権限</th>
78    <td>
79      <!--{if $arrErr.authority}--><span class="attention"><!--{$arrErr.authority}--></span><!--{/if}-->
80      <select name="authority">
81        <option value="">選択してください</option>
82        <!--{html_options options=$arrAUTHORITY selected=$arrForm.authority}-->
83      </select>
84      <span class="attention">※必須入力</span>
85    </td>
86  </tr>
87  <tr>
88    <th>稼働/非稼働</th>
89    <td>
90      <!--{if $arrErr.work}--><span class="attention"><!--{$arrErr.work}--></span><!--{/if}-->
91      <!--{assign var=key value="work"}-->
92      <input type="radio" id="<!--{$key}-->_1" name="<!--{$key}-->" value="1" style="<!--{$arrErr.work|sfGetErrorColor}-->" <!--{$arrForm.work|sfGetChecked:1}--> /><label for="<!--{$key}-->_1">稼働</label>
93      <input type="radio" id="<!--{$key}-->_0" name="<!--{$key}-->" value="0" style="<!--{$arrErr.work|sfGetErrorColor}-->" <!--{$arrForm.work|sfGetChecked:0}--> /><label for="<!--{$key}-->_0">非稼働</label>
94      <span class="attention">※必須入力</span>
95    </td>
96  </tr>
97</table>
98
99<div class="btn-area">
100  <ul>
101    <li><a class="btn-action" href="javascript:;" onclick="fnFormModeSubmit('form1', '<!--{$tpl_mode|h}-->', '', ''); return false;"><span class="btn-next">この内容で登録する</span></a></li>
102  </ul>
103</div>
104</form>
105
106<!--{include file="`$smarty.const.TEMPLATE_ADMIN_REALDIR`admin_popup_footer.tpl"}-->
Note: See TracBrowser for help on using the repository browser.