Mercurial > public > sg101
view gpp/templates/forums/new_topic.html @ 103:bb3f0d315c5f
Forums: added template support for displaying stickied topics.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 17 Sep 2009 00:20:00 +0000 |
parents | 23035afdeae8 |
children | 3ae999b0c53b |
line wrap: on
line source
{% extends 'base.html' %} {% block title %}Forums: New Topic{% endblock %} {% block custom_js %}{{ form.media }}{% endblock %} {% block content %} <h2>{{ forum.name }} - New Topic</h2> <h3> <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> </h3> <form action="." method="post"> {{ form.as_p }} <input type="submit" name="post" value="Submit" /> </form> {% endblock %}