1 {% extends "base_content.html" %}
6 <div id="main-bar" class="headNormal">
7 {% blocktrans with settings.APP_SHORT_NAME as app_name %}
8 Search in {{ app_name }}
11 <div id="main-body" style="text-align: center; height: 400px;">
12 <form action="{% url search %}" method="get">
14 <input type="text" class="searchInput" value="{{ keywords }}" name="q" id="keywords" style="width: 600px" />
15 <input type="submit" name="Submit" value="{% trans "search" %}" class="searchBtn" />
18 <input id="type-question" type="radio" value="question" name="t"
19 checked="checked" /><label for="type-question">{% trans "questions" %}</label>
20 <input id="type-tag" type="radio" value="tag" name="t" /><label for="type-tag">{% trans "tags" %}</label>
21 <input id="type-user" type="radio" value="user" name="t" /><label for="type-user">{% trans "users" %}</label>