aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/templates
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-08-29 10:43:11 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-08-29 10:43:11 -0500
commit04a7b06d613dd3ab90cde4eb268087e28d92017c (patch)
tree6ea1f21b767ede3624648a6dd31d943bbd06eeee /mediagoblin/templates
parentad56a4826b987a0fa8f65849d3611f61cc1f50d6 (diff)
downloadmediagoblin-04a7b06d613dd3ab90cde4eb268087e28d92017c.tar.lz
mediagoblin-04a7b06d613dd3ab90cde4eb268087e28d92017c.tar.xz
mediagoblin-04a7b06d613dd3ab90cde4eb268087e28d92017c.zip
Giving schendje some auth registration descriptions so he can style them!
Diffstat (limited to 'mediagoblin/templates')
-rw-r--r--mediagoblin/templates/mediagoblin/utils/wtforms.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/mediagoblin/templates/mediagoblin/utils/wtforms.html b/mediagoblin/templates/mediagoblin/utils/wtforms.html
index 2639522a..4038de98 100644
--- a/mediagoblin/templates/mediagoblin/utils/wtforms.html
+++ b/mediagoblin/templates/mediagoblin/utils/wtforms.html
@@ -20,9 +20,6 @@
{% macro render_field_div(field) %}
<div class="form_field_box">
<div class="form_field_label">{{ _(field.label.text) }}</div>
- {% if field.description -%}
- <div class="form_field_description">{{ _(field.description) }}</div>
- {%- endif %}
<div class="form_field_input">{{ field }}</div>
{%- if field.errors -%}
{% for error in field.errors %}
@@ -31,6 +28,9 @@
</div>
{% endfor %}
{%- endif %}
+ {% if field.description -%}
+ <div class="form_field_description">{{ _(field.description) }}</div>
+ {%- endif %}
</div>
{%- endmacro %}