# HG changeset patch # User Brian Neal # Date 1256351994 0 # Node ID b8f1dcc9fae43c43067bcbb8b06179fe1373c57d # Parent a20b2c492d55ab2b58acce4a047a980d9b6a9dfd Forgot to commit the template for the forums split topic view. diff -r a20b2c492d55 -r b8f1dcc9fae4 gpp/templates/forums/mod_split_topic.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/forums/mod_split_topic.html Sat Oct 24 02:39:54 2009 +0000 @@ -0,0 +1,50 @@ +{% extends 'base.html' %} +{% block title %}Forums: Split Topic{% endblock %} +{% block custom_js %}{{ form.media }}{% endblock %} +{% block content %} +

Forums: Split Topic {{ topic.name }}

+ +

+ SurfGuitar101 Forum Index » + {{ forum.name }} » + {{ topic.name }} +

+ +
+

+ Using the form below, you can split a topic into two. You can either specify which posts get + split to the new topic ("Split Selected Posts"), or by selecting a post such that all posts + at or below the selection get split ("Split At Selected Post"). +

+

+ + {{ form.as_table }} + +
  + +
+ + +{% for post in posts %} + + + + + +{% endfor %} +
+ +
+ {{ post.html|safe }} +
+
+ {% if not forloop.first %} + + {% endif %} +
+
+
+{% endblock %}