Mercurial > public > sg101
view gpp/templates/news/submit_news.html @ 230:5ee9422ce83c
Fix lack of trailing slash on the individual forum RSS feed links. For some reason this was causing a bizarre middleware error 'request object has not attribute session'.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 13 Jul 2010 03:51:37 +0000 |
parents | 6a5549c2efb5 |
children | 1246a4f1ab4f |
line wrap: on
line source
{% extends 'news/base.html' %} {% block title %}News: Submit News{% endblock %} {% if add_form %} {% block custom_js %} {{ add_form.media }} {% endblock %} {% endif %} {% block submit-class %}class="active"{% endblock %} {% block news_content %} <h3>Submit News</h3> {% if add_form %} <form action="." method="post">{% csrf_token %} <table> {{ add_form.as_table }} <tr><td> </td><td><input type="submit" value="Submit" /> <a href="{% url news-index_page page=1 %}">Cancel</a></td></tr> </table> </form> {% else %} <p><strong>Thank you for submitting a news item!</strong></p> <p>Your news item has been submitted for review to the site staff. Your item may be edited for content, grammar, or spelling. If there are any problems or questions, you will receive an email or private message. Thank you for contributing to the site!</p> {% endif %} <br /> {% endblock %}