{% set query_suffix = '' %} {% if page_query is defined and page_query %} {% set query_suffix = page_query %} {% endif %}
{% if visible_entities|length > 0 %}
{% for entity in visible_entities %}

{{entity.name}} {{entity.entity_type}}

{{entity.updated_at | datetimeformat(format="short", tz=user.timezone)}}

{{entity.description}}

{% endfor %}
{% else %}
No knowledge entities found.
{% endif %} {% if pagination.total_items > 0 %}
Showing {{ pagination.start_index }}-{{ pagination.end_index }} of {{ pagination.total_items }} entities
{% set prev_enabled = pagination.previous_page is not none %} {% set next_enabled = pagination.next_page is not none %}
{% endif %}