it/itf/templates/search/search.html

57 lines
1.8 KiB
HTML
Raw Normal View History

2011-10-13 11:05:32 +00:00
{% extends 'noel/base.html' %}
{% block extra_head %}
<link rel="stylesheet" href="/static/css/noel/inner.css" type="text/css" />
2011-10-25 17:36:42 +00:00
<script type="text/javascript" src="/static/js/search.js"></script>
2011-10-13 11:05:32 +00:00
{% endblock %}
{% block content %}
<div id="centerInner">
2011-10-25 10:31:59 +00:00
<div id="shadow">
</div>
2011-10-13 11:05:32 +00:00
<div id="searchContainer">
<div id="searchContent">
2011-10-25 17:36:42 +00:00
<!-- <h2>Search:</h2> -->
2011-10-13 11:05:32 +00:00
<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 %}
2011-10-25 10:31:59 +00:00
<h2>YOUR RESULTS:</h2>
2011-10-13 11:05:32 +00:00
{% for result in page.object_list %}
<p>
2011-10-25 17:19:31 +00:00
<a href="{{ result.object.get_absolute_url }}&search={{ query }}">{{ result.object.title }}</a>
2011-10-13 11:05:32 +00:00
</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 %}