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

13 lines
514 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:_('All Forms') }}</h2>
{% if forms %}
<div class="links-list user-all-forms 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 forms." %}</p></div>
{% endif %}
{% endblock %}