diff options
author | Sam Wenham <sam@wenhams.co.uk> | 2019-04-02 02:04:38 +0100 |
---|---|---|
committer | Sam Wenham <sam@wenhams.co.uk> | 2019-04-02 02:04:38 +0100 |
commit | d1d0c24ed8864e88f1f6e74c5ac5776fdeaf6f5a (patch) | |
tree | 6f9be692bdf248caa05e4500256e01edc444288d /templates/expedition.html | |
parent | b3089fafe99d4fffc9ee96ad1a8d70d0dd242f80 (diff) | |
download | troggle-d1d0c24ed8864e88f1f6e74c5ac5776fdeaf6f5a.tar.gz troggle-d1d0c24ed8864e88f1f6e74c5ac5776fdeaf6f5a.tar.bz2 troggle-d1d0c24ed8864e88f1f6e74c5ac5776fdeaf6f5a.zip |
Sort people by notability
Better errors and tidy
Nicer date formats
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> |