Mercurial > public > sg101
view gpp/templates/forums/new_topic.html @ 95:23035afdeae8
Forums: use markitup editor on forums post forms.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 13 Sep 2009 18:05:18 +0000 |
parents | 5b4c812b448e |
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 %}