{% import "macros/icons.html" as icons %} {% extends layout %} {% block head_title_content %}Users ยท {{ super() }}{% endblock %} {% macro column_switcher(label, slug) %}
  • {{ label }} {% if slug in datatable_query_parameters.columns %} {{ icons.eye('w-3 h-3') }} {% else %} {{ icons.eye_slash('w-3 h-3') }} {% endif %}
  • {% endmacro %} {% block main %}

    Users

    {{ icons.plus('w-4 h-4') }}
    {% if tenants | length > 1 %} {% set base_button_classes = 'inline-flex items-center justify-center text-sm font-medium leading-5 rounded-full px-3 py-1 border shadow-sm duration-150 ease-in-out' %} {% set inactive_button_classes = 'border-slate-200 hover:border-slate-300 bg-white text-slate-500' %} {% set active_button_classes = 'border-transparent bg-primary-500 text-white' %} {% endif %}
    {% include "admin/users/table.html" %} {% endblock %}