{% extends "layout.html" %} {% block container %}

{{ _('Subjects') }}

{% if subjects %} {% for subject in subjects %}
{{ subject.name }}
{% endfor %} {% else %}
{{ _('Nothing found') }}
{%endif%}

{{ _('Users') }}

{% if users %} {% for user in users %} {% include 'components/list_item_user.html' %} {% endfor %} {% else %}
{{ _('Nothing found') }}
{%endif%}
{% endblock %}