start of adding sources interface

This commit is contained in:
meeb
2020-11-26 14:03:55 +11:00
parent bf27c43bbb
commit 37d390c8d8
23 changed files with 11773 additions and 35 deletions

View File

@@ -0,0 +1,19 @@
{% if form %}
{% if form.errors %}
<ul class="errors">
{% for _, error in form.errors.items %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
{% for field in form %}
{% if field.field.widget.input_type == 'hidden' %}{{ field }}{% else %}
<div class="row">
<div class="input-field col s12">
{{ field.label_tag }}
{{ field }}
</div>
</div>
{% endif %}
{% endfor %}
{% endif %}