diff options
Diffstat (limited to 'templates/expedition.html')
-rw-r--r-- | templates/expedition.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/expedition.html b/templates/expedition.html index 7c0ecd5..0b0d360 100644 --- a/templates/expedition.html +++ b/templates/expedition.html @@ -69,7 +69,7 @@ an "S" for a survey trip. The colours are the same for people on the same trip. {% regroup dateditems|dictsort:"date" by date as dates %} {% for date in dates %} <tr> -<td>{{date.grouper}}</td> +<td>{{date.grouper|date:"D d M Y"}}</td> <td>{% for item in date.list %} {% if item.isLogbookEntry %}<a href="{{ item.get_absolute_url }}">{{item.title|safe}}</a><br/>{% endif %} {% endfor %}</td> |