Mercurial > public > sg101
view gpp/templates/forums/move_topic.html @ 140:91a01b8b5885
Comments: in order to show a green board concept while looking at the comments in the admin, added a 'not removed' boolean function.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 30 Nov 2009 03:20:24 +0000 |
parents | c329bfaed4a7 |
children | 6a5549c2efb5 |
line wrap: on
line source
{% extends 'base.html' %} {% block title %}Forums: Move Topic{% endblock %} {% block content %} <h2>Forums: Move Topic</h2> <h3> <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> » <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a> </h3> <div class="forum-block"> <form action="." method="post"> <fieldset> <legend>Move Topic: {{ topic.name }}</legend> {{ form.as_p }} <input type="submit" value="Move Topic" /> </fieldset> </form> </div> {% endblock %}