{% endblock %}
{% block content %}
{% if parent_list %}
These are the certificates that will be revoked:
{% regroup parents by parent as parent_list %}
{% for p in parent_list %}
CA: {{ p.grouper }}
{% for item in p.list %}
{% if forloop.last %}
{{ item.name }} ← will be revoked
{% else %}
{{ item.name }} ← will be revoked
{% endif %}
{% endfor %}
{% if not forloop.last %}
{% endif %}
{% endfor %}
{% endif %}
{% for i in errors %}
{{ i }}
{% endfor %}
{% if form %}
{% endif %}
{% endblock %}