mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
d25fd97864
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
69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Logbook {{logbookentry.id}}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>{{logbookentry.title|safe}}</h2>
|
|
|
|
<div id="col2">
|
|
<p><a href="{{ logbookentry.expedition.get_absolute_url }}">{{logbookentry.expedition.name}}</a></p>
|
|
|
|
{% if logbookentry.cave %}
|
|
<p>place: <a href="{{ logbookentry.cave.get_absolute_url }}">{{logbookentry.place}}</p>
|
|
{% else %}
|
|
<p>{{logbookentry.place}}</p>
|
|
{% endif %}
|
|
|
|
<p>
|
|
{% if logbookentry.get_previous_by_date %}
|
|
<a href="{{ logbookentry.get_previous_by_date.get_absolute_url }}">{{logbookentry.get_previous_by_date.date}}</a>
|
|
{% endif %}
|
|
{% if logbookentry.get_next_by_date %}
|
|
<a href="{{ logbookentry.get_next_by_date.get_absolute_url }}">{{logbookentry.get_next_by_date.date}}</a>
|
|
{% endif %}
|
|
</p>
|
|
|
|
<table class="cavers">
|
|
<tr><th>Caver</th><th>T/U</th><th>Prev</th><th>Next</th></tr>
|
|
{% for persontrip in logbookentry.persontrip_set.all %}
|
|
<tr>
|
|
{% ifequal persontrip.person_expedition logbookentry.author %}
|
|
<td class="author">
|
|
{% else %}
|
|
<td>
|
|
{% endifequal %}
|
|
<a href="{{ persontrip.person_expedition.get_absolute_url }}">{{persontrip.person_expedition.person}}</a>
|
|
</td>
|
|
|
|
<td>
|
|
{% if persontrip.timeunderground %}
|
|
- T/U {{persontrip.timeunderground}}</p>
|
|
{% endif %}
|
|
</td>
|
|
|
|
<td>
|
|
{% if persontrip.get_previous_by_date %}
|
|
<a href="{{ persontrip.get_previous_by_date.logbook_entry.get_absolute_url }}">{{persontrip.get_previous_by_date.date}}</a>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
{% if persontrip.get_next_by_date %}
|
|
<a href="{{ persontrip.get_next_by_date.logbook_entry.get_absolute_url }}">{{persontrip.get_next_by_date.date}}</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
<div id="col1">
|
|
<div class="logbookentry">
|
|
<b>{{logbookentry.date}}</b>
|
|
{{logbookentry.text|wiki_to_html}}</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|