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 | 05c5e26e9991fb3e753759c50bc1f29e3592704e (patch) | |
tree | 6f9be692bdf248caa05e4500256e01edc444288d /templates/expedition.html | |
parent | c4301cf6df56ba1bef4f2c908b949a2b45ea65dc (diff) | |
download | troggle-05c5e26e9991fb3e753759c50bc1f29e3592704e.tar.gz troggle-05c5e26e9991fb3e753759c50bc1f29e3592704e.tar.bz2 troggle-05c5e26e9991fb3e753759c50bc1f29e3592704e.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> |