1 | <div id="LayoutC"> |
---|
2 | <div id="Center"> |
---|
3 | |
---|
4 | ({* {{{ formTable *}) |
---|
5 | <div class="dparts formTable"><div class="parts"> |
---|
6 | <div class="partsHeading"><h3>イベントを作成する</h3><p>(<strong>※</strong>の項目は必須です)</p></div> |
---|
7 | ({t_form_block _enctype=file m=pc a=page_c_event_add_confirm}) |
---|
8 | <input type="hidden" name="target_c_commu_id" value="({$c_commu.c_commu_id})" /> |
---|
9 | <table> |
---|
10 | <tr> |
---|
11 | <th>タイトル <strong>※</strong></th> |
---|
12 | <td><input type="text" class="input_text" name="title" value="({$event.title})" size="40" /></td> |
---|
13 | </tr> |
---|
14 | <tr> |
---|
15 | <th>開催日時 <strong>※</strong></th> |
---|
16 | <td> |
---|
17 | <select name="open_date_year"> |
---|
18 | <option value="">----</option> |
---|
19 | ({html_options values=$year selected=$event.open_date_year output=$year}) |
---|
20 | </select> 年 |
---|
21 | <select name="open_date_month"> |
---|
22 | <option value="">----</option> |
---|
23 | ({html_options values=$month selected=$event.open_date_month output=$month}) |
---|
24 | </select> 月 |
---|
25 | <select name="open_date_day"> |
---|
26 | <option value="">----</option> |
---|
27 | ({html_options values=$day selected=$event.open_date_day output=$day}) |
---|
28 | </select> 日 |
---|
29 | (補足:<input type="text" class="input_text" name="open_date_comment" value="({$event.open_date_comment})" />) |
---|
30 | </td> |
---|
31 | </tr> |
---|
32 | <tr> |
---|
33 | <th>開催場所</th> |
---|
34 | <td> |
---|
35 | <select name="open_pref_id"> |
---|
36 | <option value="0">選択してください</option> |
---|
37 | ({html_options options=$pref selected=$event.open_pref_id}) |
---|
38 | </select> |
---|
39 | (補足:<input type="text" class="input_text" name="open_pref_comment" value="({$event.open_pref_comment})" />) |
---|
40 | </td> |
---|
41 | </tr> |
---|
42 | <tr> |
---|
43 | <th>詳細 <strong>※</strong></th> |
---|
44 | <td> |
---|
45 | <textarea name="detail" rows="6" cols="50">({$event.detail})</textarea> |
---|
46 | </td> |
---|
47 | </tr> |
---|
48 | <tr> |
---|
49 | <th>募集期限</th> |
---|
50 | <td> |
---|
51 | <select name="invite_period_year"> |
---|
52 | <option value="">----</option> |
---|
53 | ({html_options values=$year selected=$event.invite_period_year output=$year}) |
---|
54 | </select> 年 |
---|
55 | <select name="invite_period_month"> |
---|
56 | <option value="">--</option> |
---|
57 | ({html_options values=$month selected=$event.invite_period_month output=$month}) |
---|
58 | </select> 月 |
---|
59 | <select name="invite_period_day"> |
---|
60 | <option value="">--</option> |
---|
61 | ({html_options values=$day selected=$event.invite_period_day output=$day}) |
---|
62 | </select> 日 |
---|
63 | </td> |
---|
64 | </tr> |
---|
65 | <tr> |
---|
66 | <th>募集人数</th> |
---|
67 | <td> |
---|
68 | <input type="text" class="input_text" name="capacity" value="({if $event.capacity})({$event.capacity})({/if})" /> |
---|
69 | </td> |
---|
70 | </tr> |
---|
71 | <tr><th>写真1</th><td><input type="file" name="image_filename1" size="40" /></td></tr> |
---|
72 | <tr><th>写真2</th><td><input type="file" name="image_filename2" size="40" /></td></tr> |
---|
73 | <tr><th>写真3</th><td><input type="file" name="image_filename3" size="40" /></td></tr> |
---|
74 | ({if $smarty.const.OPENPNE_USE_FILEUPLOAD}) |
---|
75 | <tr> |
---|
76 | <th>ファイル</th> |
---|
77 | <td> |
---|
78 | <input type="file" class="input_file" name="uploadfile" size="40" /> |
---|
79 | <p class="caution">※ファイルサイズは({$smarty.const.FILE_MAX_FILESIZE})KB以内({if $allowed_extensions})、ファイルの種類は(({$allowed_extensions}))({/if})のファイルがアップロードできます。</p> |
---|
80 | </td> |
---|
81 | </tr> |
---|
82 | ({/if}) |
---|
83 | </table> |
---|
84 | <div class="operation"> |
---|
85 | <ul class="moreInfo button"> |
---|
86 | <li><input type="submit" class="input_submit" value="確認画面" /></li> |
---|
87 | </ul> |
---|
88 | </div> |
---|
89 | ({/t_form_block}) |
---|
90 | </div></div> |
---|
91 | ({* }}} *}) |
---|
92 | |
---|
93 | </div><!-- Center --> |
---|
94 | </div><!-- LayoutC --> |
---|