{% extends 'base.html' %} {% load base_extras inventory_extras %} {% block content %}
| Enrollment tags | Created at | Request count | Distributor | {% for enrollment in enrollments %} {% with enrollment.secret as secret %} {% with secret.tags.count as secret_tags_count %} {% with enrollment.distributor as distributor %} |
|---|---|---|---|---|
| {% if secret_tags_count %} {% for tag in secret.tags.all %} {% inventory_tag tag %} {% endfor %} {% endif %} | {{ secret.created_at|date:"SHORT_DATETIME_FORMAT" }} | {{ secret.request_count }}{% if secret.quota %} / {{ secret.quota }}{% endif %} | {% if distributor %} {{ distributor.get_description_for_enrollment }} {% else %} - {% endif %} | {% if not distributor and not secret.is_used_up %} .plist .mobileconfig {% elif secret.is_used_up %} Enrollment used up. {% endif %} |
| name | priority | tags | {% if perms.monolith.change_manifestcatalog or perms.monolith.delete_manifestcatalog %}{% endif %} |
|---|---|---|---|
| {{ manifest_catalog.catalog }} | {{ manifest_catalog.catalog.priority }} | {% for tag in manifest_catalog.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} | {% if perms.monolith.change_manifestcatalog or perms.monolith.delete_manifestcatalog %}{% if perms.monolith.change_manifestcatalog %} {% endif %} {% if perms.monolith.delete_manifestcatalog %} {% endif %} | {% endif %}
| name | version | description | tags | {% if perms.monolith.change_manifestenrollmentpackage or perms.monolith.delete_manifestenrollmentpackage %}{% endif %} |
|---|---|---|---|---|
| {{ manifest_enrollment_package.get_name }} | {{ manifest_enrollment_package.version }} | {% if mep_enrollment %} {{ mep_enrollment.get_description_for_distributor }} {% else %} - {% endif %} | {% for tag in manifest_enrollment_package.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} | {% if perms.monolith.change_manifestenrollmentpackage or perms.monolith.delete_manifestenrollmentpackage %}{% if perms.monolith.change_manifestenrollmentpackage %} {% endif %} {% if perms.monolith.delete_manifestenrollmentpackage %} {% endif %} | {% endif %}
| name | model | version | tags | {% if perms.monolith.change_printer or perms.monolith.delete_printer %}{% endif %} |
|---|---|---|---|---|
| {{ manifest_printer.name }} | {{ manifest_printer.ppd.model_name }} | {{ manifest_printer.version }} | {% for tag in manifest_printer.tags.all %} {% inventory_tag tag %} {% endfor %} | {% if perms.monolith.change_printer or perms.monolith.delete_printer %}{% if perms.monolith.change_printer %} {% endif %} {% if perms.monolith.delete_printer %} {% endif %} | {% endif %}
| name | description | tags | |
|---|---|---|---|
| {% if perms.monolith.view_submanifest %} {{ sub_manifest }} {% else %} {{ sub_manifest }} {% endif %} | {{ sub_manifest.description|default:"-"|linebreaks }} | {% for tag in manifest_sub_manifest.tags.all %} {% inventory_tag tag %} {% endfor %} | {% if perms.monolith.change_manifestsubmanifest or perms.monolith.delete_manifestsubmanifest %}{% if perms.monolith.change_manifestsubmanifest %} {% endif %} {% if perms.monolith.delete_manifestsubmanifest %} {% endif %} | {% endif %}
| name | public ip | base url | created at | updated at | {% if perms.monolith.delete_cacheserver %}{% endif %} |
|---|---|---|---|---|---|
| {{ manifest_cache_server.name }} | {{ manifest_cache_server.public_ip_address }} | {{ manifest_cache_server.base_url }} | {{ manifest_cache_server.created_at }} | {{ manifest_cache_server.updated_at }} | {% if perms.monolith.delete_cacheserver %}{% endif %} |