Mercurial > public > sg101
annotate gpp/templates/forums/move_topic.html @ 145:71cb4208dc98
Tweak to #30, admin dashboard. Because of a bug in Django (9568), my dashboard appears on the login page. To get around this, pass in the user to the templatetag, so it can do a 'if user.is_staff' check. Also tweaked the HTML and CSS to show non-zero pending items in red. Shortened the pending item titles for readability.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 09 Dec 2009 00:03:10 +0000 |
parents | c329bfaed4a7 |
children | 6a5549c2efb5 |
rev | line source |
---|---|
bgneal@110 | 1 {% extends 'base.html' %} |
bgneal@110 | 2 {% block title %}Forums: Move Topic{% endblock %} |
bgneal@110 | 3 {% block content %} |
bgneal@110 | 4 <h2>Forums: Move Topic</h2> |
bgneal@110 | 5 |
bgneal@110 | 6 <h3> |
bgneal@110 | 7 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » |
bgneal@110 | 8 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> » |
bgneal@110 | 9 <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a> |
bgneal@110 | 10 </h3> |
bgneal@110 | 11 |
bgneal@110 | 12 <div class="forum-block"> |
bgneal@110 | 13 <form action="." method="post"> |
bgneal@110 | 14 <fieldset> |
bgneal@110 | 15 <legend>Move Topic: {{ topic.name }}</legend> |
bgneal@110 | 16 {{ form.as_p }} |
bgneal@110 | 17 <input type="submit" value="Move Topic" /> |
bgneal@110 | 18 </fieldset> |
bgneal@110 | 19 </form> |
bgneal@110 | 20 </div> |
bgneal@110 | 21 {% endblock %} |