source: branches/version-2_5-dev/data/Smarty/templates/admin/basis/holiday.tpl @ 20407

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

#812 (トランザクションIDの自動生成/自動検証), #1053 (transactionidが埋め込まれる前にクリックされるとエラー)

  • transactionid用hiddenタグをJavaScriptで生成しないように変更
  • 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-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<form name="form1" id="form1" method="post" action="?">
25<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
26<input type="hidden" name="mode" value="edit" />
27<input type="hidden" name="holiday_id" value="<!--{$tpl_holiday_id}-->" />
28<div id="basis" class="contents-main">
29
30  <table class="form">
31    <tr>
32      <th>タイトル<span class="attention"> *</span></th>
33      <td>
34        <!--{if $arrErr.title}--><span class="attention"><!--{$arrErr.title}--></span><!--{/if}-->
35        <input type="text" name="title" value="<!--{$arrForm.title|h}-->" maxlength="<!--{$smarty.const.SMTEXT_LEN}-->" style="" size="60" class="box60"/>
36        <span class="attention"> (上限<!--{$smarty.const.SMTEXT_LEN}-->文字)</span>
37      </td>
38    </tr>
39    <tr>
40      <th>日付<span class="attention"> *</span></th>
41      <td>
42        <!--{if $arrErr.date || $arrErr.month || $arrErr.day}-->
43        <span class="attention"><!--{$arrErr.date}--></span>
44        <span class="attention"><!--{$arrErr.month}--></span>
45        <span class="attention"><!--{$arrErr.day}--></span>
46        <!--{/if}-->
47        <select name="month" style="<!--{$arrErr.month|sfGetErrorColor}-->">
48          <option value="">--</option>
49          <!--{html_options options=$arrMonth selected=$arrForm.month}-->
50        </select>月
51        <select name="day" style="<!--{$arrErr.day|sfGetErrorColor}-->">
52          <option value="">--</option>
53          <!--{html_options options=$arrDay selected=$arrForm.day}-->
54        </select>日
55        <br />
56        <span class="attention">振替休日は自動設定されないので、振替え先の日付を設定してください。</span>
57      </td>
58    </tr>
59  </table>
60
61  <div class="btn-area">
62    <ul>
63      <li><a class="btn-action" href="javascript:;" onclick="fnFormModeSubmit('form1', 'edit', '', ''); return false;"><span class="btn-next">この内容で登録する</span></a></li>
64    </ul>
65  </div>
66
67  <table class="list">
68    <colgroup width="50%">
69    <colgroup width="15%">
70    <colgroup width="5%">
71    <colgroup width="5%">
72    <colgroup width="15%">
73    <tr>
74      <th>タイトル</th>
75      <th>日付</th>
76      <th class="edit">編集</th>
77      <th class="delete">削除</th>
78      <th>移動</th>
79    </tr>
80    <!--{section name=cnt loop=$arrHoliday}-->
81    <tr style="background:<!--{if $tpl_class_id != $arrHoliday[cnt].holiday_id}-->#ffffff<!--{else}--><!--{$smarty.const.SELECT_RGB}--><!--{/if}-->;">
82      <!--{assign var=holiday_id value=$arrHoliday[cnt].holiday_id}-->
83      <td><!--{$arrHoliday[cnt].title|h}--></td>
84      <td><!--{$arrHoliday[cnt].month|h}-->月<!--{$arrHoliday[cnt].day|h}-->日</td>
85      <td class="center">
86        <!--{if $tpl_holiday_id != $arrHoliday[cnt].holiday_id}-->
87        <a href="?" onclick="fnModeSubmit('pre_edit', 'holiday_id', <!--{$arrHoliday[cnt].holiday_id}-->); return false;">編集</a>
88        <!--{else}-->
89        編集中
90        <!--{/if}-->
91      </td>
92      <td class="center">
93        <!--{if $arrClassCatCount[$class_id] > 0}-->
94        -
95        <!--{else}-->
96        <a href="?" onclick="fnModeSubmit('delete', 'holiday_id', <!--{$arrHoliday[cnt].holiday_id}-->); return false;">削除</a>
97        <!--{/if}-->
98      </td>
99      <td class="center">
100        <!--{if $smarty.section.cnt.iteration != 1}-->
101        <a href="?" onclick="fnModeSubmit('up', 'holiday_id', <!--{$arrHoliday[cnt].holiday_id}-->); return false;" />上へ</a>
102        <!--{/if}-->
103        <!--{if $smarty.section.cnt.iteration != $smarty.section.cnt.last}-->
104        <a href="?" onclick="fnModeSubmit('down', 'holiday_id', <!--{$arrHoliday[cnt].holiday_id}-->); return false;" />下へ</a>
105        <!--{/if}-->
106      </td>
107    </tr>
108    <!--{/section}-->
109  </table>
110
111</div>
112</form>
Note: See TracBrowser for help on using the repository browser.