annotate gpp/templates/forums/move_topic.html @ 111:e5faf9f0c11a

Forums: implemented the bulk moderator functions that operate on a forum: bulk sticky, lock, delete, and move. These haven't been tested that well yet.
author Brian Neal <bgneal@gmail.com>
date Mon, 28 Sep 2009 03:57:09 +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> &raquo;
bgneal@110 8 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> &raquo;
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 %}