Remove spaceless in forms, fix css class errors
This commit is contained in:
parent
b80947755a
commit
64d3901ec4
2 changed files with 3 additions and 2 deletions
|
@ -20,6 +20,7 @@ Fixed
|
|||
-----
|
||||
* Allow both unicode and bytes dotted string in utils.import_attr
|
||||
* Fix some spelling and grammar on log messages. (thanks to Allie Micka)
|
||||
* Fix froms css class error on success/error due to a scpaless block
|
||||
|
||||
Changed
|
||||
-------
|
||||
|
|
|
@ -6,13 +6,13 @@
|
|||
</div>
|
||||
{% endfor %}
|
||||
{% for field in form %}{% if not field|is_hidden %}
|
||||
<div class="form-group{% spaceless %}
|
||||
<div class="form-group
|
||||
{% if not form.non_field_errors %}
|
||||
{% if field.errors %} has-error
|
||||
{% elif form.cleaned_data %} has-success
|
||||
{% endif %}
|
||||
{% endif %}"
|
||||
{% endspaceless %}>{% spaceless %}
|
||||
>{% spaceless %}
|
||||
{% if field|is_checkbox %}
|
||||
<div class="checkbox"><label for="{{field.auto_id}}">{{field}}{{field.label}}</label></div>
|
||||
{% else %}
|
||||
|
|
Loading…
Reference in a new issue