combo/combo/apps/wcs/templates/combo/wcs/user_done_forms.html

15 lines
525 B
HTML

{% load i18n %}
{% block cell-content %}
<h2>{{ cell.custom_title|default:_('Done Forms') }}</h2>
{% if forms %}
{% for slug, forms in user_forms.items %}
<div class="links-list user-forms-{{ slug }} list-of-forms">
{% include "combo/wcs/list_of_forms.html" %}
</div>
{% endfor %}
{% include "combo/pagination.html" %}
{% else %}
<div class="cell--body"><p class="empty-message">{% trans "There are no done forms or they have been removed." %}</p></div>
{% endif %}
{% endblock %}