Mercurial > public > sg101
view gpp/templates/forums/new_post.html @ 298:4f032a6e21f8
Fix #139; when editing a user's post, the post author's signature should appear with the post, not the user (moderator) making the edit).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 10 Jan 2011 03:33:21 +0000 |
parents | 8fd4984d5c3b |
children |
line wrap: on
line source
{% extends 'base.html' %} {% load forum_tags %} {% block title %}Forums: New Post{% endblock %} {% block custom_js %}{{ form.media }}{% endblock %} {% block content %} {% forum_navigation topic "New Post" %} {% if can_post %} <div class="forum-block"> <a name="forum-reply-form"></a> {% show_form "New Post" form "Submit Post" 0 %} {% else %} {% if topic.locked %} <p>This topic is locked.</p> {% else %} <p>You don't have permission to post to this topic.</p> {% endif %} {% endif %} </div> {% endblock %}