mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
ac097cb2d0
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8084 by aaron @ 12/9/2008 1:31 AM
21 lines
653 B
HTML
21 lines
653 B
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
{% block title %}Logbook search results for "{{ query_string }}"{% endblock%}
|
|
|
|
{% block content %}
|
|
|
|
<h1> Troggle logbook search </h1>
|
|
|
|
<p>Your search string, <b>{{ query_string }}</b>,
|
|
|
|
{% if found_entries %}
|
|
was found in the following <b>{{entry.count}}</b> logbook titles and / or entries:</p>
|
|
<ul>
|
|
{% for entry in found_entries %}
|
|
<li><a href="{{ settings.URL_ROOT }}logbookentry/{{ entry.pk }}">{{ entry|wiki_to_html_short }} </a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
was not found in any logbook titles and / or entries. Please try again.
|
|
{% endif %}
|
|
{% endblock %} |