{% extends 'base.html' %} {% from "macros.html" import render_selectable_table, render_pagination, render_field %} {% block title %}Tenant Selection{% endblock %} {% block content_title %}Select a Tenant{% endblock %} {% block content_description %}Select the active tenant for the current session{% endblock %} {% block content %}
{{ filter_form.hidden_tag() }}
{{ render_field(filter_form.types, class="select2") }}
{{ render_field(filter_form.search) }}
{{ filter_form.submit(class="btn btn-primary") }}
{{ render_selectable_table(headers=["Tenant ID", "Tenant Name", "Website", "Type"], rows=rows, selectable=True, id="tenantsTable") }}
{% endblock %} {% block content_footer %} {{ render_pagination(pagination, 'user_bp.select_tenant') }} {% endblock %} {% block scripts %} {% endblock %}