view gpp/templates/forums/move_topic.html @ 198:7e3ed3eb9b99

Fix #71: problems with editing existing gcalendar dates; the date format wasn't what the datepicker expected.
author Brian Neal <bgneal@gmail.com>
date Sun, 11 Apr 2010 17:58:09 +0000
parents 6a5549c2efb5
children 593fb6dbd449
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> &raquo;
   <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> &raquo;
   <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a>
</h3>

<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 %}