{% 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 Catalog{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}
Name
{{ namespace.name }}
Keyword
{{ namespace.keyword }}
Description
{{ namespace.description }}
Version
{{ namespace.version }}
{% if namespace.url %}
URL
{{ namespace.url }}
{% else %}
Pattern
{{ namespace.pattern }}
{% endif %}

Sample Entries

{% for entry in namespace.entries.limit(5) %}

{{ entry.name }}

{% if entry.label %}
{{ entry.label }}
{% endif %}
{% endfor %}
{% include "footer.html" %} {% endblock %}