{% extends "base.html" %} {% load utils %} {% load user_extras %} {% load static %} {% load i18n %} {% block title %} {% trans "Users" %} {% endblock %} {% block content %} {% if perms.core.add_userprofile %} {% trans "Add user" %} {% endif %} {% with global_preferences.general__relevant_qualification_categories as relevant_qualification_categories %} {% for category in relevant_qualification_categories %} {% endfor %} {% for userprofile in userprofile_list %} {% for category in relevant_qualification_categories %} {% endfor %} {% endfor %}
{% trans "Last name" %} {% trans "First name" %} {% trans "Email address" %}{{ category.title }}{% trans "Information" %} {% trans "Action" %}
{{ userprofile.last_name }} {{ userprofile.first_name }} {{ userprofile.email }}{{ userprofile|qualifications_for_category:category.pk }}{% include "core/userprofile_badges.html" with userprofile=userprofile %} {% trans "View" %} {% trans "Edit" %} {% if perms.core.delete_userprofile %} {% trans "Delete" %} {% endif %}
{% endwith %} {% endblock %}