summaryrefslogtreecommitdiffstats
path: root/templates/cave.html
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:52:15 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:52:15 +0100
commitd25fd97864611c3be326412ae4aa84e8ad01cd66 (patch)
tree0062d37e453ad21f98411f9a208e3c6b344412c7 /templates/cave.html
parent3b35b6bb76f41f9c086e43d31f45aee25403a507 (diff)
downloadtroggle-d25fd97864611c3be326412ae4aa84e8ad01cd66.tar.gz
troggle-d25fd97864611c3be326412ae4aa84e8ad01cd66.tar.bz2
troggle-d25fd97864611c3be326412ae4aa84e8ad01cd66.zip
[svn] My crusade to make our project more Djangoic.
Got rid of the url tags in template, replaced them with get_absolute_url method calls where possible. Adding get_absolute_url in models enables direct link to the public model views in admin. The use of get_absolute_url, which is the correct Django way of doing things, eliminates any need for the redundant "href" fields we were using. Those fields now need to be deleted from the models and from the parsers. Made the context processor to pass settings to all templates actually work, although this was a little uglier than expected. I had to put in a new render_response to replace render_to_response. This is because Django uses Context, not RequestContext by default. I wish they would change this, it's annoying. Anyway, I deleted all the manual settings passing in the views. I also eliminated a couple of unnecessary methods and stuff like that. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8244 by aaron @ 2/16/2009 8:31 AM
Diffstat (limited to 'templates/cave.html')
-rw-r--r--templates/cave.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/cave.html b/templates/cave.html
index 495e2f7..c97b9cd 100644
--- a/templates/cave.html
+++ b/templates/cave.html
@@ -10,7 +10,7 @@
{% if logbookentry.title %}
<tr>
<td>{{logbookentry.date}}</td>
- <td><a href="{% url logbookentry logbookentry.href %}">{{logbookentry.title|safe}}</a></td>
+ <td><a href="{{ logbookentry.get_absolute_url }}">{{logbookentry.title|safe}}</a></td>
</tr>
{% endif %}
{% endfor %}