view gpp/templates/forums/edit_post.html @ 201:bc958bc3c6eb

Futzing with CSS side blocks
author Brian Neal <bgneal@gmail.com>
date Mon, 12 Apr 2010 02:56:31 +0000
parents 2d299909e074
children 593fb6dbd449
line wrap: on
line source
{% extends 'base.html' %}
{% load forum_tags %}
{% block title %}Forums: Edit Post{% endblock %}
{% block custom_js %}{{ form.media }}{% endblock %}
{% block content %}
<h2>Forums: Edit Post</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">
<table class="forum-topic" id="forum-topic">
{% include 'forums/display_post.html' %}
</table>

<a name="forum-reply-form"></a>
{% show_form "Edit Post" form "Update Post" 0 MEDIA_URL %}
</div>
{% endblock %}