Skip to content

Commit

Permalink
Fix invalid HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptiste Jonglez committed Jul 14, 2021
1 parent 4ee47da commit 078f9e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ihatemoney/templates/forms.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{{ field(class=class, placeholder=placeholder) | safe }}
{% endif %}
{% if field.description %}
<small id="{{field.name}}_description"" class="form-text text-muted">{{ field.description }}</small>
<small id="{{field.name}}_description" class="form-text text-muted">{{ field.description }}</small>
{% endif %}
</div>
</div>
Expand All @@ -25,7 +25,7 @@
{{ field(id=field.name) }}
<label for="{{ field.name }}">{{ field.label() }}</label>
{% if field.description %}
<small id="{{field.name}}_description"" class="form-text text-muted">{{ field.description }}</small>
<small id="{{field.name}}_description" class="form-text text-muted">{{ field.description }}</small>
{% endif %}
</div>
{% endmacro %}
Expand Down

0 comments on commit 078f9e8

Please sign in to comment.