1 {% extends "base.html" %}
\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 
  11 <div id="main-body" style="text-align: center; height: 400px;">
\r 
  12 <form action="{% url search %}" method="get">
\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 
  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