summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:59:40 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:59:40 +0100
commita4edfca30e254aa5135a059870ebd60219874087 (patch)
tree702260858e4fb84e946602b996d80ebd213735ef /templates
parent90da85e8563298a23e860db08db952f9a6b46f2d (diff)
downloadtroggle-a4edfca30e254aa5135a059870ebd60219874087.tar.gz
troggle-a4edfca30e254aa5135a059870ebd60219874087.tar.bz2
troggle-a4edfca30e254aa5135a059870ebd60219874087.zip
[svn] Got QM pages working.
Started scripts for exporting to old expo format. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8269 by aaron @ 3/12/2009 2:22 PM
Diffstat (limited to 'templates')
-rw-r--r--templates/cave.html23
-rw-r--r--templates/qm.html40
2 files changed, 62 insertions, 1 deletions
diff --git a/templates/cave.html b/templates/cave.html
index d76a211..9b7c482 100644
--- a/templates/cave.html
+++ b/templates/cave.html
@@ -4,7 +4,7 @@
{% block content %}
<div id="col2">
- <h3>All trips done in this cave</h3>
+ <h3>All logbook entries regarding this cave ({{cave.logbookentry_set.count}})</h3>
<table>
{% for logbookentry in cave.logbookentry_set.all %}
{% if logbookentry.title %}
@@ -64,4 +64,25 @@
<h2>Notes</h2>
{{ cave.notes|wiki_to_html }}
{% endif %}
+
+{% if cave.get_QMs %}
+ <h2>Question marks</h2>
+ <h3>Extant</h3>
+ <ul>
+ {% for QM in cave.get_QMs %}
+ {% if QM.ticked_off_by %}
+ {% else %}
+ <li><a href="{{QM.get_absolute_url}}">{{QM}}</a></li>
+ {% endif %}
+ {% endfor %}
+ </ul>
+ <h3>Ticked off</h3>
+ <ul>
+ {% for QM in cave.get_QMs %}
+ {% if QM.ticked_off_by %}
+ <li><a href="{{QM.get_absolute_url}}">{{QM}}</a></li>
+ {% endif %}
+ {% endfor %}
+ </ul>
+{% endif %}
{% endblock %}
diff --git a/templates/qm.html b/templates/qm.html
new file mode 100644
index 0000000..db3edc4
--- /dev/null
+++ b/templates/qm.html
@@ -0,0 +1,40 @@
+{% 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 %}