{% extends "base.html" %} {% load navigation_tags %} {% load authorization_tags %} {% block content %} {{ block.super }} {% load display_tags %}

Engineers

{% include "dojo/filter_snippet.html" with form=filtered.form %}
{% if users %}
{% include "dojo/paging_snippet.html" with page=users page_size=True %}
{% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% comment %} The display field is translated in the function. No need to translate here as well{% endcomment %} {% for u in users %} {% endfor %}
{% dojo_sort request 'First Name' 'first_name' %}{% dojo_sort request 'Last Name' 'last_name' %}{% dojo_sort request 'User Name' 'username' 'asc' %}{% dojo_sort request 'Email' 'email' %}{% dojo_sort request 'Last Login' 'last_login'%}{% dojo_sort request 'Active' 'is_active' %}{% dojo_sort request 'Superuser' 'is_superuser' %}
{{ u.first_name }} {{ u.last_name }} {{ u.username }} {{ u.email }} {{ u.last_login }} {% if u.is_active %} {% else %} {% endif %} {% if u.is_superuser %} {% else %} {% endif %}
{% include "dojo/paging_snippet.html" with page=users page_size=True %}
{% else %}
No Users
{% endif %}
{% endblock %} {% block postscript %} {{ block.super }} {% include "dojo/filter_js_snippet.html" %} {% endblock %}