{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% import "macros.html" as pbw %} {% block title %}Namespace Entry Catalog{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
{% for namespace_entry in namespace_entries %}

{{ namespace_entry.namespace.name }}:{{ namespace_entry.name }}

Count: {{ namespace_entry.edges.count() }}
{% endfor %}
{% include "footer.html" %} {% endblock %}