{% extends 'base/base.html' %} {% load static %} {% block title %}Управление{% endblock %} {% block heading %}Управление{% endblock %} {% block extra_css %} {% endblock %} {% block extra_scripts %} {% endblock%} {% block content %}

Свободных Мест: {{ licences_remaining }}

{% block form %}
{% csrf_token %}
{% block hidden_form %}
{% for field in form.users %} {{ field.tag }} {% endfor %}
{% endblock %}
Список сотрудников
{% block table %} {% for user in users %} {% endfor %}
Name Email Role Checked
{{ user.name }} {{ user.user.email }} {% if user.custom_role_id == ZENDESK_ROLES.engineer %} engineer {% elif user.custom_role_id == ZENDESK_ROLES.light_agent %} light_agent {% endif %}
{% endblock%}
{% block count %}
Инженеров:
{{ engineers }}
Легких агентов:
{{ light_agents }}
{% endblock %}
{% endblock %}
{% endblock %}