forked from expo/troggle
157f11b659
Various other little things, e.g. filled in the footer with links. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8305 by aaron @ 3/16/2009 8:53 AM
42 lines
1.0 KiB
HTML
42 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %} QM: {{qm|wiki_to_html_short}} {% endblock %}
|
|
|
|
{% block editLink %}| <a href={{qm.get_admin_url}}>Edit QM {{qm|wiki_to_html_short}}</a>{% endblock %}
|
|
|
|
|
|
|
|
{% block contentheader %}
|
|
<table id="cavepage">
|
|
<tr>
|
|
<th id="kat_no"><a href="{{qm.get_previous_by_id.get_absolute_url}}">Previous</a></th>
|
|
<th id="name">{{qm|wiki_to_html_short}}</th>
|
|
<th id="status"><a href="{{qm.get_next_by_id.get_absolute_url}}">Next</a></th>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>Location</h3>
|
|
{{qm.location_description}}
|
|
|
|
|
|
<h3>Creation</h3>
|
|
Found by <a href="{{qm.found_by.get_absolute_url}}">{{qm.found_by}}</a> on {{qm.found_by.date}}.
|
|
|
|
<h3>Completion</h3>
|
|
{% if ticked_off_by %}
|
|
{{qm.completion_description}}
|
|
Ticked off by: <a href="{{qm.ticked_off_by.get_absolute_url}}">{{qm.ticked_off_by}}</a><br />
|
|
Description: {{qm.completion_description}}
|
|
{% else %}
|
|
None yet- STILL EXTANT.
|
|
{% endif %}
|
|
|
|
<h3>Comment</h3>
|
|
{{qm.comment}}
|
|
|
|
{% endblock %}
|