bgneal@110: {% extends 'base.html' %} bgneal@110: {% block title %}Forums: Move Topic{% endblock %} bgneal@110: {% block content %} bgneal@110: <h2>Forums: Move Topic</h2> bgneal@110: bgneal@110: <h3> bgneal@110: <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » bgneal@110: <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> » bgneal@110: <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a> bgneal@110: </h3> bgneal@110: bgneal@110: <div class="forum-block"> bgneal@110: <form action="." method="post"> bgneal@110: <fieldset> bgneal@110: <legend>Move Topic: {{ topic.name }}</legend> bgneal@110: {{ form.as_p }} bgneal@110: <input type="submit" value="Move Topic" /> bgneal@110: </fieldset> bgneal@110: </form> bgneal@110: </div> bgneal@110: {% endblock %}