Add status type filters

This commit is contained in:
Joachim
2021-11-22 00:25:47 +01:00
parent 8a6f78cfff
commit a0093a8a2e
6 changed files with 100 additions and 3 deletions

View File

@ -0,0 +1,11 @@
{% with id=widget.attrs.id %}
<div{% if id %} id="{{ id }}"{% endif %} class="field">
<div class="control">
{% for group, options, index in widget.optgroups %}
{% for option in options %}
{% include option.template_name with widget=option %}
{% endfor %}
{% endfor %}
</div>
</div>
{% endwith %}