annotate gpp/templates/forums/move_topic.html @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +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 %}