Compare commits
2 Commits
22ac084e9d
...
3c2fde2600
Author | SHA1 | Date | |
---|---|---|---|
3c2fde2600 | |||
1bcd18c805 |
@ -1,40 +1,43 @@
|
||||
<div class="{{ content.css_classes }}">
|
||||
{% block root %}
|
||||
<div class="{{ content.css_classes }}">
|
||||
|
||||
{% block errors %}
|
||||
{% if content.errors|length %}
|
||||
<ul class="form-field-errors">
|
||||
{% for error in content.errors %}
|
||||
<li class="error">{{ error }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block label %}
|
||||
{% if content.label %}
|
||||
<label {% if content.id %}for="{{ content.id }}"{% endif %}>{{ content.label }}</label>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block field %}
|
||||
<input
|
||||
{% if content.id %}
|
||||
id="{{ content.id }}"
|
||||
{% block label %}
|
||||
{% if content.label %}
|
||||
<label {% if content.id %}for="{{ content.id }}"{% endif %}>{{ content.label }}</label>
|
||||
{% endif %}
|
||||
{% if not content.valid %}
|
||||
class="invalid"
|
||||
{% endif %}
|
||||
type="{{ content.input_type }}"
|
||||
name="{{ content.name_qualified }}"
|
||||
{% if not content.value is none %}
|
||||
value="{{ content.value }}"
|
||||
{% endif %}
|
||||
/>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
{% block help %}
|
||||
{% if content.help %}
|
||||
<aside class="form-field-help">{{ content.help }}</aside>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% block field %}
|
||||
<input
|
||||
{% if content.id %}
|
||||
id="{{ content.id }}"
|
||||
{% endif %}
|
||||
{% if not content.valid %}
|
||||
class="invalid"
|
||||
{% endif %}
|
||||
type="{{ content.input_type }}"
|
||||
name="{{ content.name_qualified }}"
|
||||
{% if not content.value is none %}
|
||||
value="{{ content.value }}"
|
||||
{% endif %}
|
||||
/>
|
||||
{% endblock %}
|
||||
|
||||
{% block help %}
|
||||
{% if content.help %}
|
||||
<aside class="form-field-help">{{ content.help }}</aside>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block errors %}
|
||||
{% if content.errors|length %}
|
||||
<ul class="form-field-errors">
|
||||
{% for error in content.errors %}
|
||||
<li class="error">{{ error }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -23,3 +23,14 @@
|
||||
{% endif %}
|
||||
/>
|
||||
{% endblock %}
|
||||
|
||||
{% block root %}
|
||||
<div class="{{ content.css_classes }}">
|
||||
|
||||
{{ self.field() }}
|
||||
{{ self.label() }}
|
||||
{{ self.help() }}
|
||||
{{ self.errors() }}
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue
Block a user