summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:44:01 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:44:01 +0100
commit1e1453f44351e0c8b7b725e008ef33bc53c70689 (patch)
treee0029a1897fed683efb891458d8efb0b7f950bdd /templates
parentb6f1f182f5113f2e402c6bd7d3038c6fc9aa91cd (diff)
downloadtroggle-1e1453f44351e0c8b7b725e008ef33bc53c70689.tar.gz
troggle-1e1453f44351e0c8b7b725e008ef33bc53c70689.tar.bz2
troggle-1e1453f44351e0c8b7b725e008ef33bc53c70689.zip
[svn] Added links to front page
Add names for views in order to link from the main page Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8223 by julian @ 1/24/2009 3:11 PM
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html13
1 files changed, 9 insertions, 4 deletions
diff --git a/templates/index.html b/templates/index.html
index bbc4312..bc0bfa9 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -27,8 +27,11 @@
<h3>{{message}}</h3>
<ul>
- <li><a href="{% url personindex %}">List osf people</a></li>
+ <li><a href="{% url caveindex %}">List of Caves</a></li>
+ <li><a href="{% url personindex %}">List of People</a></li>
<li><a href="/statistics">Statistics of what's loaded in the database</a></li>
+ <li><a href="{% url survexindex survex_file=all %}">Survex directory</a></li>
+ <li><a href="{% url survey %}">Survey files</a></li>
</ul>
<form action="" method="GET">
@@ -37,11 +40,13 @@
</form>
<ul id="expeditionlist">
- <li>
+
{% for expedition in expeditions %}
- <a href="{% url expedition expedition.year %}">{{expedition.name}}</a>
+ <li>
+ <a href="{% url expedition expedition.year %}">{{expedition.name}}</a>
+ </li>
{% endfor %}
- </li>
+
</ul>
{% endblock %}