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

Blueprint{{ object_list|length|pluralize }} ({{ object_list|length }})

{% if perms.mdm.add_blueprint %} {% url 'mdm:create_blueprint' as url %} {% button 'CREATE' url "Create new Blueprint" %} {% endif %}
{% if object_list %} {% for blueprint in object_list %} {% endfor %}
Name Artifacts DEP enr. OTA enr. User enr. updated at
{{ blueprint }} {{ blueprint.blueprintartifact__count }} {{ blueprint.depenrollment__count }} {{ blueprint.otaenrollment__count }} {{ blueprint.userenrollment__count }} {{ blueprint.updated_at|date:"SHORT_DATETIME_FORMAT" }}
{% else %} {% if perms.mdm.add_blueprint %} {% url 'mdm:create_blueprint' as link %} {% no_entities 'Blueprints' link %} {% else %} {% no_entities 'Blueprints' %} {% endif %} {% endif %} {% endblock %}