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

SCEP configuration{{ page_obj.paginator.count|pluralize }} ({{ page_obj.paginator.count }})

{% if perms.mdm.add_scepconfig %} {% url 'mdm:create_scep_config' as url %} {% button 'CREATE' url "Create new SCEP configuration" %} {% endif %}
{% if object_list %} {% pagination next_url previous_url %} {% for scep_config in object_list %} {% endfor %}
Name URL created at updated at
{{ scep_config }} {{ scep_config.url }} {{ scep_config.created_at|date:"SHORT_DATETIME_FORMAT" }} {{ scep_config.updated_at|date:"SHORT_DATETIME_FORMAT" }}
{% pagination next_url previous_url %} {% else %} {% if perms.mdm.add_scepconfig %} {% url 'mdm:create_scep_config' as link %} {% no_entities 'SCEP Configurations' link %} {% else %} {% no_entities 'SCEP Configurations' %} {% endif %} {% endif %} {% endblock %}