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

Revision 23230, 5.5 KB checked in by m_uehara, 11 years ago (diff)

#2363 r23177, r23181 - r23186, r23188 - r23191, r23194, r23197, r23199 - r23218, r23220, r23223 - r23225 をマージ

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