comparison gpp/templates/forums/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 07be3e39e639
children 0ce0104c7df3
comparison
equal deleted inserted replaced
109:07be3e39e639 110:c329bfaed4a7
43 <input type="submit" value="{% if topic.locked %}Unlock{% else %}Lock{% endif %} Topic" /> 43 <input type="submit" value="{% if topic.locked %}Unlock{% else %}Lock{% endif %} Topic" />
44 </form> 44 </form>
45 <form action="{% url forums-mod_topic_delete topic.id %}" method="post"> 45 <form action="{% url forums-mod_topic_delete topic.id %}" method="post">
46 <input type="submit" value="Delete Topic" id="forum-mod-del-topic" /> 46 <input type="submit" value="Delete Topic" id="forum-mod-del-topic" />
47 </form> 47 </form>
48 <a href="{% url forums-mod_topic_move topic.id %}"><img src="{{ MEDIA_URL }}icons/application_go.png" alt="Move Topic" title="Move Topic" /></a>
49 <a href="{% url forums-mod_topic_move topic.id %}">Move this topic</a>
48 </div> 50 </div>
49 {% endif %} 51 {% endif %}
50 52
51 {% if last_page and can_reply %} 53 {% if last_page and can_reply %}
52 <a name="forum-reply-form"></a> 54 <a name="forum-reply-form"></a>