summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/expedition.html2
-rw-r--r--templates/personexpedition.html2
-rw-r--r--templates/svxcavesingle.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/expedition.html b/templates/expedition.html
index 0b0d360..b5b58a8 100644
--- a/templates/expedition.html
+++ b/templates/expedition.html
@@ -37,7 +37,7 @@ an "S" for a survey trip. The colours are the same for people on the same trip.
</tr>
{% for personexpeditionday in personexpeditiondays %}
<tr>
- <td><a href="{{ personexpeditionday.personexpedition.get_absolute_url }}">{{personexpeditionday.personexpedition.person}}</a></td>
+ <td><a href="{{ personexpeditionday.personexpedition.get_absolute_url }}">{{personexpeditionday.personexpedition.person|safe}}</a></td>
{% for persondayactivities in personexpeditionday.personrow %}
{% if persondayactivities.persontrips or persondayactivities.survexblocks %}
diff --git a/templates/personexpedition.html b/templates/personexpedition.html
index 30d071b..93228d9 100644
--- a/templates/personexpedition.html
+++ b/templates/personexpedition.html
@@ -7,7 +7,7 @@
{% block content %}
<h1>
- <a href="{{personexpedition.person.get_absolute_url}}">{{personexpedition.person}}</a> :
+ <a href="{{personexpedition.person.get_absolute_url}}">{{personexpedition.person|safe}}</a> :
<a href="{{personexpedition.expedition.get_absolute_url}}">{{personexpedition.expedition}}</a>
</h1>
diff --git a/templates/svxcavesingle.html b/templates/svxcavesingle.html
index ad5540f..54a4250 100644
--- a/templates/svxcavesingle.html
+++ b/templates/svxcavesingle.html
@@ -41,7 +41,7 @@
<td>{{survexblock.name}}</td>
<td>
{% if survexblock.expedition %}
- <a href="{{survexblock.expedition.get_absolute_url}}">{{survexblock.date}}</a>
+ <a href="{{survexblock.expedition.get_absolute_url}}">{{survexblock.date|date:"D d M Y"}}</a>
{% else %}
{{survexblock.date}}
{% endif %}