diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:44:01 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:44:01 +0100 |
commit | 1e1453f44351e0c8b7b725e008ef33bc53c70689 (patch) | |
tree | e0029a1897fed683efb891458d8efb0b7f950bdd | |
parent | b6f1f182f5113f2e402c6bd7d3038c6fc9aa91cd (diff) | |
download | troggle-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
-rw-r--r-- | templates/index.html | 13 | ||||
-rw-r--r-- | urls.py | 6 |
2 files changed, 12 insertions, 7 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 %}
@@ -8,13 +8,13 @@ admin.autodiscover() urlpatterns = patterns('',
(r'^$', frontPage),
- (r'^cave/?$', caveindex),
+ url(r'^cave/?$', caveindex, name="caveindex"),
(r'^cave/(?P<cave_id>[^/]+)/?$', cave),
(r'^cave/(?P<cave_id>[^/]+)/?(?P<ent_letter>[^/])$', ent),
#(r'^cave/(?P<cave_id>[^/]+)/edit/$', edit_cave),
(r'^cavesearch', caveSearch),
- (r'^survex/(?P<survex_file>.*)\.index$', index),
+ url(r'^survex/(?P<survex_file>.*)\.index$', index, name="survexindex"),
(r'^survex/(?P<survex_file>.*)\.svx$', svx),
(r'^survex/(?P<survex_file>.*)\.3d$', threed),
(r'^survex/(?P<survex_file>.*)\.log$', log),
@@ -34,7 +34,7 @@ urlpatterns = patterns('', url(r'^statistics/?$', stats, name="stats"),
url(r'^calendar/(?P<year>\d\d\d\d)?$', calendar, name="calendar"),
-
+
url(r'^survey/?$', surveyindex, name="survey"),
(r'^survey/(?P<year>\d\d\d\d)\#(?P<wallet_number>\d*)$', survey),
|