publik-base-theme/templates/variants/toulouse-2022/combo/wcs/user_done_forms.html

13 lines
531 B
HTML

{% load i18n %}{% comment %}overload to show an unique sorted list of forms {% endcomment %}
{% block cell-content %}
<h2 class="cell--title">{{ cell.custom_title|default:_('Done Forms') }}</h2>
{% if forms %}
<div class="links-list list-of-forms">
{% include "combo/wcs/list_of_forms.html" %}
</div>
{% 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 %}