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/logbookentry.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/logbookentry.html')
-rw-r--r-- | templates/logbookentry.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/logbookentry.html b/templates/logbookentry.html index 0534de9..5c8c341 100644 --- a/templates/logbookentry.html +++ b/templates/logbookentry.html @@ -7,7 +7,7 @@ {% block related %}{% endblock %} {% block nav %}{% endblock %} -<h2>{{logbookentry.title}}</h2> +<h2>{{logbookentry.title|safe}}</h2> <div id="related"> <p><a href="{{ logbookentry.expedition.get_absolute_url }}">{{logbookentry.expedition.name}}</a></p> @@ -66,7 +66,7 @@ <div id="col1"> <div class="logbookentry"> - <b>{{logbookentry.date}}</b> + <b>{{logbookentry.date|date:"D d M Y"}}</b> {% if logbookentry.entry_type == "html" %} <p>{{logbookentry.text|safe}}</p> {% else %} |