{% extends "base/layout.html" %} {% block page_actions %} Add User {% endblock %} {% block content %}
Showing {{ ((pagination.page - 1) * pagination.size) + 1 }} to {{ (pagination.page * pagination.size) if (pagination.page * pagination.size) < pagination.total else pagination.total }} of {{ pagination.total }} users
{% for user in users %} {% else %} {% endfor %}
Name Email Username Status Created Actions
{{ user.full_name or user.name }}
{% if user.en_name %} {{ user.en_name }} {% endif %}
{{ user.email or '-' }} {{ user.name }} {% if user.status == 1 %} Active {% else %} Inactive {% endif %} {% if user.locked == 1 %} Locked {% endif %} {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else '-' }}

No users found

{% if search %}

Try adjusting your search criteria

{% endif %}
{% if pagination.pages > 1 %} {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}