{% load hyperadmin_utils %} {% if meta.object_count %}Count: {{meta.object_count}}
{% endif %} {% if meta.number_of_pages %}Pages: {{meta.number_of_pages}}
{% endif %} {% for item in items %}
{% block data %} {% if item.form and item.form.fields %}

Data

{% for row in item.form %} {{row.label}}: {{row.value}}
{% endfor %}
{% endif %} {% endblock %} {% block item_outbound_links %} {% with item.links.get_item_outbound_links as outbound_links %} {% if outbound_links %}

Outbound Links

{% endif %} {% endwith %} {% endblock %} {% block item_embedded_links %} {% with item.links.get_item_embedded_links as embedded_links %} {% if embedded_links %}

Embedded Links

{% endif %} {% endwith %} {% endblock %} {% block item_templated_queries %} {% with item.links.get_item_templated_queries as templated_queries %} {% if templated_queries %}

Templated Queries

{% include "hyperadmin/html5/templated_queries.html" with links=templated_queries %}
{% endif %} {% endwith %} {% endblock %} {% block item_non_idempotent_updates %} {% with item.links.get_item_ln_links as non_idempotent_updates %} {% if non_idempotent_updates %}

Non-Idempotent Updates

{% include "hyperadmin/html5/links.html" with links=non_idempotent_updates %}
{% endif %} {% endwith %} {% endblock %} {% block item_idempotent_updates %} {% with item.links.get_item_idempotent_links as idempotent_updates %} {% if idempotent_updates %}

Idempotent Updates

{% include "hyperadmin/html5/links.html" with links=idempotent_updates %}
{% endif %} {% endwith %} {% endblock %} {% block item_namespaces %} {% if state.item %} {% for namespace in item.get_namespaces.itervalues %}

Namespace: {{namespace.name}}

{% include_namespace namespace %} {% endfor %} {% endif %} {% endblock item_namespaces %}
{% endfor %}