view gpp/templates/forums/move_topic.html @ 283:593fb6dbd449

Fixing #125. Developed a forums navigation template tag to consistently display forum navigation.
author Brian Neal <bgneal@gmail.com>
date Mon, 04 Oct 2010 00:57:58 +0000
parents 6a5549c2efb5
children
line wrap: on
line source
{% extends 'base.html' %}
{% load forum_tags %}
{% block title %}Forums: Move Topic{% endblock %}
{% block content %}
{% forum_navigation topic "Move Topic" %}

<div class="forum-block">
<form action="." method="post">{% csrf_token %}
<fieldset>
<legend>Move Topic: {{ topic.name }}</legend>
   {{ form.as_p }}
   <input type="submit" value="Move Topic" />
</fieldset>
</form>
</div>
{% endblock %}