it/itf/templates/search/search.html
2011-10-25 18:36:42 +01:00

57 lines
1.8 KiB
HTML
Executable File

{% extends 'noel/base.html' %}
{% block extra_head %}
<link rel="stylesheet" href="/static/css/noel/inner.css" type="text/css" />
<script type="text/javascript" src="/static/js/search.js"></script>
{% endblock %}
{% block content %}
<div id="centerInner">
<div id="shadow">
</div>
<div id="searchContainer">
<div id="searchContent">
<!-- <h2>Search:</h2> -->
<form method="get" action="." id="searchItf">
<table>
{{ form.as_table }}
<tr>
<td>&nbsp;</td>
<td>
<input type="submit" value="Search">
</td>
</tr>
</table>
{% if query %}
<h2>YOUR RESULTS:</h2>
{% for result in page.object_list %}
<p>
<a href="{{ result.object.get_absolute_url }}&search={{ query }}">{{ result.object.title }}</a>
</p>
{% empty %}
<p>No results found.</p>
{% endfor %}
{% if page.has_previous or page.has_next %}
<div>
{% if page.has_previous %}<a href="?q={{ query }}&amp;page={{ page.previous_page_number }}">{% endif %}&laquo; Previous{% if page.has_previous %}</a>{% endif %}
|
{% if page.has_next %}<a href="?q={{ query }}&amp;page={{ page.next_page_number }}">{% endif %}Next &raquo;{% if page.has_next %}</a>{% endif %}
</div>
{% endif %}
{% else %}
{# Show some example queries to run, maybe query syntax, something else? #}
{% endif %}
</form>
</div><!-- SEARCH CONTENT CLOSING -->
</div><!-- SEARCH CONTAINER CLOSING -->
</div><!-- CENTER INNER -->
{% endblock %}