changeset 129:fa4ef22f3f24

For Django 1.6: BoundField.label_tag now includes label_suffix. Remove addition of ':' since Django is now including this in the subscribe form template.
author Brian Neal <bgneal@gmail.com>
date Tue, 24 Dec 2013 15:04:26 -0600
parents 6c7dd8bda890
children 3062c547bb90
files madeira/templates/email_list/subscribe_form.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/madeira/templates/email_list/subscribe_form.html	Tue Dec 24 14:59:35 2013 -0600
+++ b/madeira/templates/email_list/subscribe_form.html	Tue Dec 24 15:04:26 2013 -0600
@@ -15,7 +15,7 @@
       {% endif %}
       {% for field in form %}
          <div class="form-group">
-         {{ field.label_tag }}{% if field.field.required %}*{% endif %}:
+         {{ field.label_tag }}{% if field.field.required %}*{% endif %}
          {% if field.errors %}
             <div class="alert alert-danger">{{ field.errors }}</div>
          {% endif %}