Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/forums/move_topic.html Sat Sep 26 20:19:45 2009 +0000 @@ -0,0 +1,21 @@ +{% 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 %}