annotate 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
rev   line source
bgneal@83 1 {% extends 'base.html' %}
bgneal@83 2 {% block title %}Forums: New Topic{% endblock %}
bgneal@95 3 {% block custom_js %}{{ form.media }}{% endblock %}
bgneal@83 4 {% block content %}
bgneal@83 5 <h2>{{ forum.name }} - New Topic</h2>
bgneal@83 6
bgneal@83 7 <h3>
bgneal@83 8 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
bgneal@83 9 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a>
bgneal@83 10 </h3>
bgneal@83 11
bgneal@83 12 <form action="." method="post">
bgneal@83 13 {{ form.as_p }}
bgneal@123 14 <a href="#" id="more_smileys">
bgneal@123 15 <img src="{{ MEDIA_URL }}icons/emoticon_smile.png" alt="More smileys" title="More smileys" /></a>
bgneal@83 16 <input type="submit" name="post" value="Submit" />
bgneal@83 17 </form>
bgneal@83 18
bgneal@123 19 <div id="smileys_dialog" title="More Smileys">
bgneal@123 20 <img src="{{ MEDIA_URL }}icons/ajax_busy.gif" alt="Loading" id="smiley_busy" />
bgneal@123 21 </div>
bgneal@123 22
bgneal@83 23 {% endblock %}