annotate gpp/templates/forums/edit_post.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 cb72577785df
children 2d299909e074
rev   line source
bgneal@106 1 {% extends 'base.html' %}
bgneal@106 2 {% block title %}Forums: Edit Post{% endblock %}
bgneal@106 3 {% block custom_js %}{{ form.media }}{% endblock %}
bgneal@106 4 {% block content %}
bgneal@106 5 <h2>Forums: Edit Post</h2>
bgneal@106 6
bgneal@106 7 <h3>
bgneal@106 8 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
bgneal@106 9 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> &raquo;
bgneal@106 10 <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a>
bgneal@106 11 </h3>
bgneal@106 12
bgneal@106 13 <div class="forum-block">
bgneal@106 14 <table class="forum-topic" id="forum-topic">
bgneal@106 15 {% include 'forums/display_post.html' %}
bgneal@106 16 </table>
bgneal@106 17
bgneal@106 18 <a name="forum-reply-form"></a>
bgneal@106 19 <form action="." method="post" id="forums-quick-reply">
bgneal@106 20 <fieldset>
bgneal@106 21 <legend>Edit Post</legend>
bgneal@106 22 {{ form.as_p }}
bgneal@123 23 <a href="#" id="more_smileys">
bgneal@123 24 <img src="{{ MEDIA_URL }}icons/emoticon_smile.png" alt="More smileys" title="More smileys" /></a>
bgneal@106 25 <input type="submit" value="Update Post" id="forums-edit-post" />
bgneal@106 26 </fieldset>
bgneal@106 27 </form>
bgneal@106 28 </div>
bgneal@123 29 <div id="smileys_dialog" title="More Smileys">
bgneal@123 30 <img src="{{ MEDIA_URL }}icons/ajax_busy.gif" alt="Loading" id="smiley_busy" />
bgneal@123 31 </div>
bgneal@106 32 {% endblock %}