welco/welco/templates/welco/qualification.html

20 lines
366 B
HTML

{% load i18n %}
<div>
<form>
{% if association %}
<ul>
{% for formdef in association.formdefs.all %}
<li> {{formdef.reference}} </li>
{% endfor %}
</ul>
{% endif %}
<div>
{{form.formdef_reference}}
</div>
<button class="add">{% trans 'Add' %}</button>
{% if association %}
<button class="done">{% trans 'Done' %}</button>
{% endif %}
</form>
</div>