annotate gpp/templates/forums/show_form.html @ 127:2d299909e074

Adding markdown help to comments and forums. Still need to add it to a few other places that use the markItUp editor.
author Brian Neal <bgneal@gmail.com>
date Mon, 16 Nov 2009 01:00:28 +0000
parents
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>