Mercurial > repos > vimalkumarvelayudhan > riboplot
annotate docs/_templates/searchbox.html @ 11:7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Other changes:
* Remove information on time taken (riboplot).
* Remove striped table styles (not used. unusable on sorting).
* log before re-raising errors.
author | Vimalkumar Velayudhan <vimal@biotechcoder.com> |
---|---|
date | Wed, 19 Aug 2015 10:14:52 +0100 (2015-08-19) |
parents | |
children |
rev | line source |
---|---|
11
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
1 {# |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
2 basic/searchbox.html |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
3 ~~~~~~~~~~~~~~~~~~~~ |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
4 |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
5 Sphinx sidebar template: quick search box. |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
6 |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
7 :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
8 :license: BSD, see LICENSE for details. |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
9 #} |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
10 {%- if pagename != "search" and builder != "singlehtml" %} |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
11 <div id="searchbox" style="display: none" role="search"> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
12 <!--<h3>{{ _('Search') }}</h3>--> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
13 <form class="search" action="{{ pathto('search') }}" method="get"> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
14 <input type="text" name="q" placeholder="Search"/> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
15 <input type="submit" value="{{ _('Go') }}" /> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
16 <input type="hidden" name="check_keywords" value="yes" /> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
17 <input type="hidden" name="area" value="default" /> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
18 </form> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
19 </div> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
20 <script type="text/javascript">$('#searchbox').show(0);</script> |
7571f5c89090
Simple error message now output to HTML. Detailed error goes to standard error.
Vimalkumar Velayudhan <vimal@biotechcoder.com>
parents:
diff
changeset
|
21 {%- endif %} |