mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
cb7868bdca
* Add DJlint configuration * Initial reformat for djlint * Add template linting to CI * Add explanation for HTML template checks in CONTRIBUTING.md
24 lines
682 B
HTML
24 lines
682 B
HTML
{% macro render_field(field) %}
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">{{ field.label }}</label>
|
|
<div class="col-sm-10">
|
|
{{ field(**kwargs)|safe }}
|
|
<small class="form-text text-muted">{{ field.description }}</small>
|
|
{% if field.errors %}
|
|
|
|
<ul class="errors">
|
|
{% for error in field.errors %}<li>{{ error }}</li>{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endmacro %}
|
|
{% macro render_field_errors(field) %}
|
|
{% if field.errors %}
|
|
|
|
<ul class="errors">
|
|
{% for error in field.errors %}<li class="text-danger">{{ error }}</li>{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endmacro %}
|