changeset 375:fe1896e14c11

Fixing #184; fix typo in date template filter string that is causing the wrong date to be displayed on the max users online statistic.
author Brian Neal <bgneal@gmail.com>
date Tue, 08 Mar 2011 00:50:33 +0000
parents dd673fae508d
children 6f963e5e7b03
files gpp/templates/forums/forum_stats_tag.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gpp/templates/forums/forum_stats_tag.html	Mon Mar 07 01:22:49 2011 +0000
+++ b/gpp/templates/forums/forum_stats_tag.html	Tue Mar 08 00:50:33 2011 +0000
@@ -4,6 +4,6 @@
 The newest registered user is <a href="{% url 'bio-view_profile' username=latest_user %}">{{ latest_user }}</a>.
 {% if stats %}
 <br />
-The most users ever online was <strong>{{ stats.max_users }}</strong> on {{ stats.max_users_date|date:"P l, N n, Y" }}.
+The most users ever online was <strong>{{ stats.max_users }}</strong> on {{ stats.max_users_date|date:"P l, N d, Y" }}.
 {% endif %}
 </div>