annotate gpp/templates/forums/show_form.html @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents 2d299909e074
children 13330e1836f3
rev   line source
bgneal@127 1 <form action="." method="post">
bgneal@127 2 <fieldset>
bgneal@127 3 <legend>{{ legend_text }}</legend>
bgneal@127 4 {{ form.as_p }}
bgneal@127 5 <a href="#" id="more_smileys">
bgneal@127 6 <img src="{{ MEDIA_URL }}icons/emoticon_smile.png" alt="More smileys" title="More smileys" /></a>
bgneal@127 7 <a href="#" id="markdown_help">
bgneal@127 8 <img src="{{ MEDIA_URL }}icons/help.png" alt="Help" title="Help" /></a>
bgneal@127 9 <input type="submit" value="{{ submit_value }}" {% if is_ajax %}id="forums-reply-post"{% endif %} />
bgneal@127 10 </fieldset>
bgneal@127 11 </form>
bgneal@127 12 <div id="smileys_dialog" title="More Smileys">
bgneal@127 13 <img src="{{ MEDIA_URL }}icons/ajax_busy.gif" alt="Loading" id="smiley_busy" />
bgneal@127 14 </div>
bgneal@127 15 <div id="markdown_help_dialog" title="Markdown Help">
bgneal@127 16 <img src="{{ MEDIA_URL }}icons/ajax_busy.gif" alt="Loading" id="markdown_busy" />
bgneal@127 17 </div>