comparison templates/reservation.html @ 1:f5a9f0eb4858

deleted: LICENSE.ja
author Sushi-k <epgrec@park.mda.or.jp>
date Wed, 08 Jul 2009 11:44:50 +0900
parents
children
comparison
equal deleted inserted replaced
0:96312e6ab8d4 1:f5a9f0eb4858
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3
4 <html>
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>{$sitetitle}</title>
8 <meta http-equiv="Content-Style-Type" content="text/css">
9
10 {literal}
11
12
13 <style type="text/css">
14 <!--
15 body {padding:4px;margin:0;font-size:10pt;}
16 a {text-decoration:none;}
17
18 table#reservation_table {
19 width: 640px;
20 border: 1px #BBB solid;
21 border-collapse: collapse;
22 border-spacing: 0;
23 }
24
25 table#reservation_table th {
26 padding: 5px;
27 border: #E3E3E3 solid;
28 border-width: 0 0 1px 1px;
29 background: #BBB;
30 font-weight: bold;
31 line-height: 120%;
32 text-align: center;
33 }
34 table#reservation_table td {
35 padding: 5px;
36 border: 1px #BBB solid;
37 border-width: 0 0 1px 1px;
38 text-align: left;
39 }
40
41 table#reservation_table tr.ctg_news, #category_select a.ctg_news {background-color: #FFFFD8;}
42 table#reservation_table tr.ctg_etc, #category_select a.ctg_etc {background-color: #FFFFFF;}
43 table#reservation_table tr.ctg_information, #category_select a.ctg_information {background-color: #F2D8FF;}
44 table#reservation_table tr.ctg_sports, #category_select a.ctg_sports {background-color: #D8FFFF;}
45 table#reservation_table tr.ctg_cinema, #category_select a.ctg_cinema {background-color: #FFD8D8;}
46 table#reservation_table tr.ctg_music, #category_select a.ctg_music {background-color: #D8D8FF;}
47 table#reservation_table tr.ctg_drama, #category_select a.ctg_drama {background-color: #D8FFD8;}
48 table#reservation_table tr.ctg_anime, #category_select a.ctg_anime {background-color: #FFE4C8;}
49 table#reservation_table tr.ctg_variety, #category_select a.ctg_variety {background-color: #FFD2EB;}
50 table#reservation_table tr.ctg_10, #category_select a.ctg_10 {background-color: #E4F4F4;}
51
52
53 -->
54 </style>
55
56 {/literal}
57
58 </head>
59 <body>
60
61 <h2>{$sitetitle}</h2>
62 <p><a href="index.php">予約せずに番組表に戻る</a></p>
63
64 <form method="post" action="customReservation.php">
65 <table id="reservation_table">
66 <tr>
67 <th>開始日時</th>
68 <td><input type="text" size="4" name="syear" value="{$syear}" />年
69 <input type="text" size="2" name="smonth" value="{$smonth}" />月
70 <input type="text" size="2" name="sday" value="{$sday}" />日
71 <input type="text" size="2" name="shour" value="{$shour}" />時
72 <input type="text" size="2" name="smin" value="{$smin}" />分~
73 </td>
74 </tr>
75 <tr>
76 <th>終了日時</th>
77 <td><input type="text" size="4" name="eyear" value="{$eyear}" />年
78 <input type="text" size="2" name="emonth" value="{$emonth}" />月
79 <input type="text" size="2" name="eday" value="{$eday}" />日
80 <input type="text" size="2" name="ehour" value="{$ehour}" />時
81 <input type="text" size="2" name="emin" value="{$emin}" />分
82 </td>
83 </tr>
84 <tr>
85 <th>種別/ch</th>
86 <td>{$type}:{$channel}ch
87 <input type="hidden" name="channel_id" value="{$channel_id}" />
88 </td>
89 </tr>
90 <tr>
91 <th>録画モード</th>
92 <td><select name="record_mode">
93 {section name=mode loop=$record_mode }
94 <option value="{$smarty.section.mode.index}">{$record_mode[mode].name}</option>
95 {/section}
96 </select>
97 </td>
98 </tr>
99 <tr>
100 <th>タイトル</th>
101 <td><input type="text" size="80" name="title" value="{$title}" /></td>
102 </tr>
103 <tr>
104 <th>概要</th>
105 <td><textarea name="description" rows="4" cols="40" >{$description}</textarea></td>
106 </tr>
107 <tr>
108 <th>カテゴリ</th>
109 <td>
110 <select name="category_id">
111 {foreach from=$cats item=cat}
112 <option value="{$cat.id}" {$cat.selected}>{$cat.name}</option>
113 {/foreach}
114 </select>
115 </td>
116 </tr>
117 <tr>
118 <th>番組ID保持</th>
119 <td><input type="checkbox" name="program_id" value="{$program_id}" checked /></td>
120 </tr>
121 </table>
122 <input type="submit" value="予約する" />
123 </form>
124
125 </body>
126 </html>