{% extends 'dashboard/layout.html' %} {% load dashboard_tags %} {% load i18n %} {% block title %} {% trans "Approvers" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

{% trans "Add an reviewer" %}

{% include "partials/form_fields_inline.html" with form=form %} {% trans "Reset" %}
{% if form.is_bound %}

Search results

{% if object_list %} {% for profile in object_list %} {% endfor %}
{% trans "Email" %} {% trans "First name" %} {% trans "Last name" %} {% trans "Active" %} {% trans "Staff status" %} {% trans "Is a reviewer?" %}
{{ profile.user.email }} {{ profile.user.first_name }} {{ profile.user.last_name }} {{ profile.user.is_active }} {{ profile.user.is_staff }} {{ profile.is_order_approver }}
{% csrf_token %} {% if profile.is_order_approver %} {% else %} {% endif %}
{% else %}

{% trans "No users found." %}

{% endif %} {% endif %} {% if approvers %} {% for profile in approvers %} {% endfor %}
{% trans "Email" %} {% trans "First name" %} {% trans "Last name" %} {% trans "Active" %} {% trans "Staff status" %} {% trans "Is a reviewer?" %}
{{ profile.user.email }} {{ profile.user.first_name }} {{ profile.user.last_name }} {{ profile.user.is_active }} {{ profile.user.is_staff }} {{ profile.is_order_approver }}
{% csrf_token %} {% if profile.is_order_approver %} {% else %} {% endif %}
{% if page_obj %} {% include "catalogue/partials/pagination.html" %} {% endif %} {% else %}

{% trans "There are currently no reviewers." %}

{% endif %} {% endblock dashboard_content %}