{% 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.name }}{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
Name
{{ namespace_entry.name }}
Namespace Keyword
{{ namespace_entry.namespace.keyword }}
Namespace
{{ namespace_entry.namespace.name }}
Namespace Version
{{ namespace_entry.namespace.version }}
{% if namespace_entry.namespace.url %}
Namespace URL
{{ namespace_entry.namespace.url }}
{% else %}
Pattern
{{ namespace_entry.namespace.pattern }}
{% endif %}
{% set edges = namespace_entry.edges.limit(5).all() %} {% if edges|length > 0 %}

Sample Annotated Edges {{ edges|length }}

{{ pbw.render_edge_list(edges) }}
{% endif %}
{% include "footer.html" %} {% endblock %}