From 5720e9f9c547162d463e091cf0e150bb9dd4f889 Mon Sep 17 00:00:00 2001 From: aaron Date: Tue, 9 Dec 2008 02:31:30 +0100 Subject: [PATCH] [svn r8084] Forgot to add cave and logbook search templates in earlier commit. --- troggle/templates/cavesearch.html | 23 +++++++++++++++++++++++ troggle/templates/logbooksearch.html | 21 +++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 troggle/templates/cavesearch.html create mode 100644 troggle/templates/logbooksearch.html diff --git a/troggle/templates/cavesearch.html b/troggle/templates/cavesearch.html new file mode 100644 index 000000000..a555b4424 --- /dev/null +++ b/troggle/templates/cavesearch.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% load wiki_markup %} +{% block title %} +Cave search results for "{{ query_string }}" +{% endblock%} + +{% block content %} + +

Troggle cave search

+ +Your search string, {{ query_string }}, + +{% if found_entries %} + was found in the following {{found_entries.count}} cave underground descriptions and / or official names: + + {% else %} + was not found in any cave underground descriptions and / or official names. Please try again. + {% endif %} +{% endblock %} \ No newline at end of file diff --git a/troggle/templates/logbooksearch.html b/troggle/templates/logbooksearch.html new file mode 100644 index 000000000..2fc00f862 --- /dev/null +++ b/troggle/templates/logbooksearch.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} +{% load wiki_markup %} +{% block title %}Logbook search results for "{{ query_string }}"{% endblock%} + +{% block content %} + +

Troggle logbook search

+ +

Your search string, {{ query_string }}, + +{% if found_entries %} + was found in the following {{entry.count}} logbook titles and / or entries:

+ + {% else %} + was not found in any logbook titles and / or entries. Please try again. + {% endif %} +{% endblock %} \ No newline at end of file