comparison gpp/templates/forums/move_topic.html @ 110:c329bfaed4a7

Forums: implemented the move topic feature.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Sep 2009 20:19:45 +0000
parents
children 6a5549c2efb5
comparison
equal deleted inserted replaced
109:07be3e39e639 110:c329bfaed4a7
1 {% extends 'base.html' %}
2 {% block title %}Forums: Move Topic{% endblock %}
3 {% block content %}
4 <h2>Forums: Move Topic</h2>
5
6 <h3>
7 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
8 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> &raquo;
9 <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a>
10 </h3>
11
12 <div class="forum-block">
13 <form action="." method="post">
14 <fieldset>
15 <legend>Move Topic: {{ topic.name }}</legend>
16 {{ form.as_p }}
17 <input type="submit" value="Move Topic" />
18 </fieldset>
19 </form>
20 </div>
21 {% endblock %}