{% extends "admin/base.html" %} {% from "oldman/dashboard/components/modal.html" import modal %} {% block title %}{{ model_admin.verbose_name_plural }} ยท Oldman Admin{% endblock %} {% block content %}

{{ model_admin.verbose_name_plural }}

{{ model_admin.get_list_card_title() }}

{% if model_admin.has_add_permission(request) %} {{ model_admin.get_add_button_label() }} {% endif %}
{% if filter_form_html %} {{ filter_form_html }} {% endif %} {% if admin_user_management %}
{% endif %} {{ table_html }}
{% if admin_user_management %} {% call modal( "user-password-modal", _("Change Password"), component="modal", close_label=_("Close"), dialog_scrollable=true, remote_content=true ) %}

{{ _("Select a row action to continue.") }}

{% endcall %} {% endif %} {% if admin_user_management %} {% call modal( "user-status-modal", _("Change Status"), component="modal", close_label=_("Close"), dialog_scrollable=true, remote_content=true ) %}

{{ _("Select a row action to continue.") }}

{% endcall %} {% endif %} {% if admin_user_management %} {% call modal( "user-delete-modal", _("Delete User"), component="modal", close_label=_("Close"), dialog_scrollable=true, remote_content=true ) %}

{{ _("Select a row action to continue.") }}

{% endcall %} {% endif %} {% endblock %}