Mercurial > public > sg101
view gpp/templates/forums/edit_post.html @ 167:cf9f9d4c4d54
Adding a query to the forums to get all the topics with unread posts. This is for ticket #54.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 24 Jan 2010 22:33:11 +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> » <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> » <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 %}