debian-django-watson/watson/templates/watson/search_results.html

21 lines
781 B
HTML

<!DOCTYPE html>{% load watson %}
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Search results{% if query %} for &ldquo;{{query}}&rdquo;{% endif %}</title>
</head>
<body>
<h1>Search results{% if query %} for &ldquo;{{query}}&rdquo;{% endif %}</h1>
{% if search_results %}
{% search_results search_results %}
{% else %}
{% if query %}
<p><em>There are no results to display.</em></p>
<p><em>Try entering a less specific search term.</em></p>
{% else %}
<p><em>Please enter a query in the search form.</em></p>
{% endif %}
{% endif %}
</body>
</html>