Mercurial > public > sg101
view gpp/templates/forums/new_topic.html @ 123:3ae999b0c53b
Forums: added a jquery ui dialog of extra smileys.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 08 Nov 2009 21:15:31 +0000 |
parents | 23035afdeae8 |
children | 2d299909e074 |
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 }} <a href="#" id="more_smileys"> <img src="{{ MEDIA_URL }}icons/emoticon_smile.png" alt="More smileys" title="More smileys" /></a> <input type="submit" name="post" value="Submit" /> </form> <div id="smileys_dialog" title="More Smileys"> <img src="{{ MEDIA_URL }}icons/ajax_busy.gif" alt="Loading" id="smiley_busy" /> </div> {% endblock %}