From ac097cb2d05800fbe583843125f3d393ff53a256 Mon Sep 17 00:00:00 2001 From: substantialnoninfringinguser Date: Wed, 13 May 2009 05:22:51 +0100 Subject: [PATCH] [svn] Forgot to add cave and logbook search templates in earlier commit. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8084 by aaron @ 12/9/2008 1:31 AM --- templates/cavesearch.html | 23 +++++++++++++++++++++++ templates/logbooksearch.html | 21 +++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 templates/cavesearch.html create mode 100644 templates/logbooksearch.html diff --git a/templates/cavesearch.html b/templates/cavesearch.html new file mode 100644 index 0000000..a555b44 --- /dev/null +++ b/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/templates/logbooksearch.html b/templates/logbooksearch.html new file mode 100644 index 0000000..2fc00f8 --- /dev/null +++ b/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