Mercurial > public > sg101
annotate gpp/templates/messages/base.html @ 348:d1b11096595b
Fix #168; when nailing a spammer, clear their profile text fields. Guard against topics and forums that don't exist when deleting posts in the signal handler. Make the forum stats template tag only display the latest active users.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 02 Mar 2011 02:18:28 +0000 |
parents | 88b2b9cb8c1f |
children | 8df6e9edac22 |
rev | line source |
---|---|
gremmie@1 | 1 {% extends 'base.html' %} |
bgneal@310 | 2 {% load url from future %} |
gremmie@1 | 3 {% block custom_css %} |
bgneal@312 | 4 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/tab-nav.css" /> |
bgneal@312 | 5 <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/messages.css" /> |
gremmie@1 | 6 {% endblock %} |
gremmie@1 | 7 {% block content %} |
gremmie@1 | 8 <h2>Your Private Messsages</h2> |
gremmie@1 | 9 <ul class="tab-nav"> |
gremmie@1 | 10 <li><a {% block compose-class %}{% endblock %} |
bgneal@310 | 11 href="{% url 'messages-compose' %}">Compose</a></li> |
gremmie@1 | 12 <li><a {% block inbox-class %}{% endblock %} |
bgneal@310 | 13 href="{% url 'messages-inbox' %}">Inbox</a></li> |
gremmie@1 | 14 <li><a {% block outbox-class %}{% endblock %} |
bgneal@310 | 15 href="{% url 'messages-outbox' %}">Outbox</a></li> |
gremmie@1 | 16 <li><a {% block trash-class %}{% endblock %} |
bgneal@310 | 17 href="{% url 'messages-trash' %}">Trash</a></li> |
gremmie@1 | 18 <li><a {% block options-class %}{% endblock %} |
bgneal@310 | 19 href="{% url 'messages-options' %}">Options</a></li> |
gremmie@1 | 20 </ul> |
gremmie@1 | 21 {% block messages_content %} |
gremmie@1 | 22 {% endblock %} |
gremmie@1 | 23 <br /> |
gremmie@1 | 24 {% endblock %} |