{% extends 'base.html' %} {% load bootstrap inventory_extras %} {% block content %}

Catalog {{ object.name }}

{% if not object.archived_at and perms.monolith.change_catalog %} {% endif %} {% if object.can_be_deleted and perms.monolith.delete_catalog %} {% endif %}

Priority
{{ object.priority }}
Created at
{{ object.created_at }}
Archived at
{{ object.archived_at|default:"-" }}
{% if perms.monolith.view_manifestcatalog %}

{{ manifests|length }} manifest{{ manifests|length|pluralize }}

{% if manifests %} {% for manifest, tags in manifests %} {% endfor %}
Manifest Tags
{% if perms.monolith.view_manifest %} {{ manifest }} {% else %} {{ manifest }} {% endif %} {% for tag in tags %} {% inventory_tag tag %} {% empty %} - {% endfor %}
{% endif %} {% endif %} {% if perms.monolith.view_pkginfo %}

{{ pkg_infos|length }} package{{ pkg_infos|length|pluralize }}

{% if pkg_infos %}

Browse all packages {% endif %} {% endif %} {% endblock %}