diff options
author | Caleb Forbes Davis V <caldavis@gmail.com> | 2011-08-11 19:17:56 -0500 |
---|---|---|
committer | Caleb Forbes Davis V <caldavis@gmail.com> | 2011-08-11 19:17:56 -0500 |
commit | d9204d3a3dd91f63fd43345415ebeb6fc02cc1c8 (patch) | |
tree | a95dd083b9e53a9c3d54cb7aa5799c59f1516be8 | |
parent | d07be8119de3b2e10ca37d43dfecd4239dc09aba (diff) | |
download | mediagoblin-d9204d3a3dd91f63fd43345415ebeb6fc02cc1c8.tar.lz mediagoblin-d9204d3a3dd91f63fd43345415ebeb6fc02cc1c8.tar.xz mediagoblin-d9204d3a3dd91f63fd43345415ebeb6fc02cc1c8.zip |
uses render_divs for the comments form in media.html for completeness
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/media.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index afc0d903..9c0a1cca 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -55,7 +55,7 @@ <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment', user= media.uploader().username, media=media._id) }}" method="POST"> - {{ wtforms_util.render_field_div(comment_form.comment_content) }} + {{ wtforms_util.render_divs(comment_form) }} <div class="form_submit_buttons"> <input type="submit" value="{% trans %}Post comment!{% endtrans %}" class="button" /> </div> |