OSDN Git Service

delete to commit beyond merge error
[pybbs/pybbs.git] / pybbs / mysearch.htm
1 <!DOCTYPE html>
2
3 <html>
4   <head>
5     <meta charset=utf-8>
6     <title>
7 Search Page
8     </title>
9     {% block style %}
10     <link rel="stylesheet" href={{static_url('css/main.css')}}>
11         {% end %}
12   </head> 
13   <body>
14     <form action="/search/0/" method="post">
15     <p style=font-weight:bold;text-align:center>検索ページ
16     </p>
17       <p style=text-align:center>AND検索。半角カンマ(,)で区切ってください。
18       </p>
19       <p><br></p><p><br></p><p><br></p>
20         <p>検索ワード</p>
21         <input name=word1 type=search value={{word1}}>
22     <p><label><input type="radio" name="filter" value="name">名前から検索 </label>
23          <label><input type="radio" checked="true" name="filter" value="com">本文から検索</label>
24     </p>
25       <p>
26     <input type="submit" value="検索"></p>
27     </form>
28       <p><a href="/">掲示板へ戻る
29 </a></p>
30     
31     <hr>
32     <p><a href=/archives>�A�[�J�C�u�t�@�C��</a>���{���\94\</p>
33     <p>data.sdb���ŐV�t�@�C���ł�</p>
34   {% block body %}
35     <a name="article"></a>
36     {% for record in records %}
37     <hr size=1>
38         <section id=number>[{{record['number']}}]</section>
39         <section id=title>{{record['title']}}</section>
40         <section id=name>  Name:<h1>{{record['name']}}</h1></section>
41         <section id=date>  Date:<h1>{{record['date']}}</h1></section>
42         <section id=comment>{{record['comment']}}</section>
43         {% end %}
44   {% end %}
45 {% block footer %}
46         {% module Footer(position,'/search') %}
47     <p style=text-align:center><a href="/">掲示板へ戻る</a></p>   
48 {% end %}
49   </body>
50 </html>