diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:35:59 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:35:59 +0100 |
commit | f229ff35f909d7afea62ba2e1021a12cb0e16b22 (patch) | |
tree | 2169346dc516829de73d643251746bf262123936 /templates/index.html | |
parent | b950ee70f77892463fac87fba2dd9d5ce964accf (diff) | |
download | troggle-f229ff35f909d7afea62ba2e1021a12cb0e16b22.tar.gz troggle-f229ff35f909d7afea62ba2e1021a12cb0e16b22.tar.bz2 troggle-f229ff35f909d7afea62ba2e1021a12cb0e16b22.zip |
[svn] Julian playing with the logbooks and expoyears
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8180 by julian @ 1/18/2009 3:59 PM
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html index 0a19187..667fa28 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8,9 +8,21 @@ <h2>The unfinished front page</h2>
<p>Some handy links into the less incomplete parts of this webpage</p>
+<h3>{{message}}</h3>
+
<ul>
<li><a href="{% url personindex %}">List osf people</a></li>
<li><a href="/statistics">Statistics of what's loaded in the database</a></li>
</ul>
+<form action="" method="GET"><input type="submit" name="reload" value="Reload"></form>
+
+<ul id="expeditionlist">
+ <li>
+ {% for expedition in expeditions %}
+ <a href="{% url expedition expedition.year %}">{{expedition.name}}</a>
+ {% endfor %}
+ </li>
+</ul>
+
{% endblock %}
|