Mercurial > public > sg101
diff gpp/templates/forums/edit_post.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 | 3ae999b0c53b |
children | 593fb6dbd449 |
line wrap: on
line diff
--- a/gpp/templates/forums/edit_post.html Sat Nov 14 20:30:31 2009 +0000 +++ b/gpp/templates/forums/edit_post.html Mon Nov 16 01:00:28 2009 +0000 @@ -1,4 +1,5 @@ {% extends 'base.html' %} +{% load forum_tags %} {% block title %}Forums: Edit Post{% endblock %} {% block custom_js %}{{ form.media }}{% endblock %} {% block content %} @@ -16,17 +17,6 @@ </table> <a name="forum-reply-form"></a> -<form action="." method="post" id="forums-quick-reply"> -<fieldset> -<legend>Edit Post</legend> -{{ 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" value="Update Post" id="forums-edit-post" /> -</fieldset> -</form> -</div> -<div id="smileys_dialog" title="More Smileys"> -<img src="{{ MEDIA_URL }}icons/ajax_busy.gif" alt="Loading" id="smiley_busy" /> +{% show_form "Edit Post" form "Update Post" 0 MEDIA_URL %} </div> {% endblock %}