digitalfabrik/integreat-cms

View on GitHub
integreat_cms/cms/templates/users/region_user_list.html

Summary

Maintainability
Test Coverage
{% extends "_base.html" %}
{% load i18n %}
{% block content %}
    {% load static %}
    <div class="table-header">
        <h1 class="heading">
            {% translate "Account Management" %}
        </h1>
        <div class="flex justify-between">
            {% include "search_input_form.html" with object_type="user" %}
            {% if perms.cms.change_user %}
                <a href="{% url 'new_region_user' region_slug=request.region.slug %}"
                   class="btn">{% translate "Create account" %}</a>
            {% endif %}
        </div>
    </div>
    <div class="table-listing">
        <table class="w-full mt-4 rounded border border-solid border-gray-200 shadow bg-white">
            <thead>
                <tr class="border-b border-solid border-gray-200">
                    <th class="text-sm text-left uppercase py-3 pl-4 pr-2">
                        {% translate "Username" %}
                    </th>
                    <th class="text-sm text-left uppercase py-3 pr-2">
                        {% translate "First Name" %}
                    </th>
                    <th class="text-sm text-left uppercase py-3 pr-2">
                        {% translate "Last Name" %}
                    </th>
                    <th class="text-sm text-left uppercase py-3 pr-2">
                        {% translate "E-mail-address" %}
                    </th>
                    <th class="text-sm text-left uppercase py-3 pr-2">
                        {% translate "Role" %}
                    </th>
                    <th class="text-sm text-left uppercase py-3 pr-2">
                        {% translate "Last Login" %}
                    </th>
                    <th class="text-sm text-left uppercase py-3 pr-4 min">
                        {% translate "Active" %}
                    </th>
                    <th class="text-sm text-left uppercase py-3 pr-4 min">
                        {% translate "Security" %}
                    </th>
                </tr>
            </thead>
            <tbody>
                {% for user in users %}
                    {% include "users/region_user_list_row.html" %}
                {% empty %}
                    <tr>
                        <td colspan="6" class="px-4 py-3">
                            {% if search_query %}
                                {% translate "No users found with these filters." %}
                            {% else %}
                                {% translate "No users available yet." %}
                            {% endif %}
                        </td>
                    </tr>
                {% endfor %}
            </tbody>
        </table>
    </div>
    {% url "region_users" as url %}
    {% include "pagination.html" with chunk=users %}
{% endblock content %}