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

{{ title }}

Create

{% for enrollment in object_list %} {% with enrollment.secret as secret %} {% with enrollment.distributor as distributor %} {% endwith %} {% endwith %} {% endfor %}
Business unit Tags Created at Request count
{{ secret.meta_business_unit|default:"-" }} {% for tag in secret.tags.all %} {% inventory_tag tag %} {% empty %} - {% endfor %} {{ secret.created_at }} {{ secret.request_count }}{% if secret.quota %} / {{ secret.quota }}{% endif %} {% if not distributor and not secret.is_used_up %}
URL
{{ events_url }}
Authorization header
Bearer {{ enrollment.secret.secret }}
{% elif secret.is_used_up %} Enrollment used up. {% endif %}
{% endblock %}