##// END OF EJS Templates
Fixed favicon in the authors page that was broken by some django-1.10 changes
neko259 -
r1643:2c9d77fe default
parent child Browse files
Show More
@@ -1,6 +1,7 b''
1 {% extends "boards/base.html" %}
1 {% extends "boards/base.html" %}
2
2
3 {% load i18n %}
3 {% load i18n %}
4 {% load static %}
4
5
5 {% block head %}
6 {% block head %}
6 <title>{% trans "Authors" %}</title>
7 <title>{% trans "Authors" %}</title>
@@ -8,7 +9,7 b''
8
9
9 {% block content %}
10 {% block content %}
10 <div class="post">
11 <div class="post">
11 <p><img src="{{ STATIC_URL }}favicon.png" width="200" /></p>
12 <p><img src="{% static 'favicon.png' %}" width="200" /></p>
12 <h2>{% trans 'Statistics' %}</h2>
13 <h2>{% trans 'Statistics' %}</h2>
13 <p>{% trans 'Size of media:' %} {{ media_size|filesizeformat }}.
14 <p>{% trans 'Size of media:' %} {{ media_size|filesizeformat }}.
14 <p>{% blocktrans count count=post_count %}{{ count }} message{% plural %}messages{% endblocktrans %}.</p>
15 <p>{% blocktrans count count=post_count %}{{ count }} message{% plural %}messages{% endblocktrans %}.</p>
General Comments 0
You need to be logged in to leave comments. Login now