combo/combo/apps/wcs/templates/combo/wcs/user_all_forms.html

15 lines
508 B
HTML

{% load i18n %}
{% block cell-content %}
<h2>{{ cell.custom_title|default:_('All Forms') }}</h2>
{% if forms %}
{% for slug, forms in user_forms.items %}
<div class="links-list user-forms-{{ slug }} user-all-forms 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 forms." %}</p></div>
{% endif %}
{% endblock %}