{% load i18n perms %}
{# --- top paginator --- #} {% include 'inc/paginator.html' with paginator=paginator page=page_obj placement='top' htmx=True table=htmx_table %} {# --- table or empty state --- #} {% if page_rows %}
{% if 'type' in selected_columns %} {% endif %} {% if 'object' in selected_columns %} {% endif %} {% if 'value' in selected_columns %} {% endif %} {% if 'field' in selected_columns %} {% endif %} {% if 'tags' in selected_columns %} {% endif %} {% for obj, field, value in page_rows %} {% if 'type' in selected_columns %} {% endif %} {% if 'object' in selected_columns %} {% endif %} {% if 'value' in selected_columns %} {% endif %} {% if 'field' in selected_columns %}{% endif %} {% if 'tags' in selected_columns %} {% endif %} {% endfor %}
{% trans "Type" %} {% if sort_headers.type.icon %}{% endif %} {% trans "Object" %} {% if sort_headers.object.icon %}{% endif %} {% trans "Value" %} {% trans "Field" %} {% if sort_headers.field.icon %}{% endif %} {% trans "Tags" %}
{% if request.user|can_view:field.custom_object_type %} {{ field.custom_object_type }} {% else %} {{ field.custom_object_type }} {% endif %} {{ obj }} {% if field.type == 'object' %} {% if value %} {{ value }} {% else %} — {% endif %} {% elif field.type == 'multiobject' %} {% if value %} {% for related_obj in value|slice:":3" %} {{ related_obj }} {% if not forloop.last %},{% endif %} {% endfor %} {% if value|length > 3 %}…{% endif %} {% else %} — {% endif %} {% else %} — {% endif %} {{ field }} {% for t in obj.tags.all %} {% tag t %} {% if not forloop.last %}{% endif %} {% empty %} — {% endfor %} {% if request.user|can_change:obj %} Edit {% endif %} {% if request.user|can_delete:obj %} Delete {% endif %}
{% else %}
{% if q or type_slug or tag_slug %} {% trans "No custom objects match your filters." %} {% else %} {% trans "No custom objects are linked to this object." %} {% endif %}
{% endif %} {# --- bottom paginator --- #} {% include 'inc/paginator.html' with paginator=paginator page=page_obj placement='bottom' htmx=True table=htmx_table %}