{% include 'crispy_crud/fragments/loaders/loading_spinner.html' %}
{% include 'crispy_crud/fragments/table/table_heading.html' with text="Name" first_column=True %}
{% include 'crispy_crud/fragments/table/table_heading.html' with text="Active" %}
{% include 'crispy_crud/fragments/table/table_heading.html' with text="" %}
{% for widget in object_list %}
{% include 'crispy_crud/fragments/table/table_cell.html' with text=widget.name first_column=True strong=True %}
{% include 'crispy_crud/fragments/table/table_cell.html' with text=widget.is_active %}
{% if page_obj %}
{% include 'crispy_crud/fragments/table/hx_pagination.html' with page=page_obj %}
{% endif %}
{% include 'crispy_crud/fragments/table/hx_add_model_oob_link.html' with is_htmx=request.htmx %}