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

{{ object.name }}

Condition

{% if perms.monolith.change_condition %} {% url 'monolith:update_condition' object.pk as url %} {% button 'UPDATE' url "Edit Condition" %} {% endif %} {% if object.can_be_deleted and perms.monolith.delete_condition %} {% url 'monolith:delete_condition' object.pk as url %} {% button 'DELETE' url "Delete Condition" %} {% endif %}
Attribute Value
Name {{ object.name }}
Predicate
{{ object.predicate }}
{% created_updated_at object %}
{% if perms.monolith.view_pkginfo %}

Package{{ pkg_infos|length|pluralize }} ({{ pkg_infos|length }})

{% if pkg_infos %} {% for sub_manifest, name, link, type, key in pkg_infos %} {% endfor %}
Sub manifest Package Type Key
{% if perms.monolith.view_submanifest %} {{ sub_manifest }} {% else %} {{ sub_manifest }} {% endif %} {{ name }} {{ type }} {{ key }}
{% endif %} {% endif %} {% endblock %}