# HG changeset patch # User Brian Neal # Date 1387919066 21600 # Node ID fa4ef22f3f245f012e575bc62a76a3a9d7d6a0c0 # Parent 6c7dd8bda8905c2aa023e5936ca494afec6e9a6c 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. diff -r 6c7dd8bda890 -r fa4ef22f3f24 madeira/templates/email_list/subscribe_form.html --- 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 %}
- {{ field.label_tag }}{% if field.field.required %}*{% endif %}: + {{ field.label_tag }}{% if field.field.required %}*{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}