it/itf/templates/search/search.html

64 lines
1.9 KiB
HTML
Raw Normal View History

2011-10-13 11:05:32 +00:00
{% extends 'noel/base.html' %}
2012-03-27 20:28:28 +00:00
{% load highlight %}
{% load markup %}
2011-10-13 11:05:32 +00:00
{% 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
2012-03-27 20:28:28 +00:00
<!--
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>
2012-03-27 20:28:28 +00:00
-->
2011-10-13 11:05:32 +00:00
{% 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>
2012-03-27 20:28:28 +00:00
<a href="{{ result.object.get_absolute_url }}&amp;search={{ query }}">{{ result.object.title }}</a> <br />
{{ result.text|truncatewords:60|markdown|safe }}
2011-10-13 11:05:32 +00:00
</p>
{% empty %}
2011-10-25 18:47:34 +00:00
<p class="noResults">No results found.</p>
2011-10-13 11:05:32 +00:00
{% endfor %}
2011-10-25 19:47:34 +00:00
{% else %}
{# Show some example queries to run, maybe query syntax, something else? #}
{% endif %}
2011-10-13 11:05:32 +00:00
{% if page.has_previous or page.has_next %}
2011-10-25 19:03:45 +00:00
<div id="prevNext">
2011-10-25 20:15:20 +00:00
2011-10-25 20:11:44 +00:00
{% if page.has_previous %}<a id="prevSearch" href="?q={{ query }}&amp;page={{ page.previous_page_number }}">Prev</a>{% endif %}
2011-10-25 19:04:56 +00:00
2011-10-25 20:11:44 +00:00
{% if page.has_next %}<a id="nextSearch" href="?q={{ query }}&amp;page={{ page.next_page_number }}">Next</a>{% endif %}
2011-10-25 20:15:20 +00:00
2011-10-13 11:05:32 +00:00
</div>
{% endif %}
2011-10-25 19:47:34 +00:00
2011-10-13 11:05:32 +00:00
</div><!-- SEARCH CONTENT CLOSING -->
</div><!-- SEARCH CONTAINER CLOSING -->
</div><!-- CENTER INNER -->
{% endblock %}