diff --git a/bootstrapform/templates/bootstrapform/field.html b/bootstrapform/templates/bootstrapform/field.html index dc936e5..bfbdf64 100644 --- a/bootstrapform/templates/bootstrapform/field.html +++ b/bootstrapform/templates/bootstrapform/field.html @@ -4,10 +4,11 @@ {% if field|is_checkbox %}
- - + {% if field.auto_id %} + + {% endif %} {% for error in field.errors %} {{ error }} {% endfor %} @@ -20,8 +21,9 @@
{% elif field|is_radio %} - - + {% if field.auto_id %} + + {% endif %}
{% for choice in field %}
@@ -43,7 +45,9 @@ {% endif %}
{% else %} - + {% if field.auto_id %} + + {% endif %}
{{ field }} diff --git a/docs/install.rst b/docs/install.rst index 44e03eb..0b62106 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -63,7 +63,7 @@ CHANGELOG - 2013-8-27: - Add support for Bootstrap 3, contributed by `Nivl`_ + Add support for Bootstrap 3, contributed by `Nivl `_ - 2013-5-7: