]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/css3/templates/search.html
initial import
[osqa.git] / forum / skins / css3 / templates / search.html
1 {% extends "base.html" %}\r
2 \r
3 {% load i18n %}\r
4 \r
5 {% block content %}\r
6 <div id="main-bar" class="headNormal">\r
7         {% blocktrans with settings.APP_SHORT_NAME as app_name %}\r
8             Search in {{  app_name }}\r
9         {%  endblocktrans %}\r
10 </div>\r
11 <div id="main-body" style="text-align: center; height: 400px;">\r
12 <form action="{% url search %}" method="get">\r
13     <div>\r
14         <input type="text" class="searchInput" value="{{ keywords }}" name="q" id="keywords" style="width: 600px" />\r
15         <input type="submit" name="Submit" value="{% trans "search" %}" class="searchBtn" />\r
16     </div>\r
17     <div class="options">\r
18         <input id="type-question" type="radio" value="question" name="t"\r
19             checked="checked" /><label for="type-question">{% trans "questions" %}</label>\r
20         <input id="type-tag" type="radio" value="tag" name="t" /><label for="type-tag">{% trans "tags" %}</label>\r
21         <input id="type-user" type="radio" value="user" name="t" /><label for="type-user">{% trans "users" %}</label>\r
22     </div>\r
23 </form>\r
24 </div>\r
25 {% endblock %}