{% extends "admin/master.html" %} {% import 'admin/layout.html' as layout with context %} {% from "govuk_frontend_jinja/components/back-link/macro.html" import govukBackLink %} {% from 'govuk_frontend_jinja/components/error-summary/macro.html' import govukErrorSummary %} {% from 'govuk_frontend_jinja/components/inset-text/macro.html' import govukInsetText %} {% from 'govuk_frontend_jinja/components/details/macro.html' import govukDetails %} {% from 'deliver_grant_funding/partials/existing-certifiers.html' import existingCertifiersTable %} {% block beforeContent %} {{ govukBackLink({"text": "Back", "href": url_for('collection_lifecycle.tasklist', grant_id=grant.id, collection_id=collection.id) }) }} {% endblock %} {% block action_panel %}
{{ layout.messages() }} {% if form.errors %} {{ govukErrorSummary(wtforms_errors(form)) }} {% endif %}

Set up global certifiers

This form is designed to work with an export of Delta's certifiers. Request an export via Delta's service desk. With that export open in Excel or similar, hide everything other than these columns:

Using filters, select only these certifier types:

Then copy and paste the entire table into the text area and submit. The header row must appear exactly once.

{{ govukInsetText({"text": "This will not remove certifier permissions from any existing users."}) }}
{% set existingCertifiersHtml %}

If any of these certifiers are incorrect, you can revoke certifiers.

{{ existingCertifiersTable(certifiers_by_org) }} {% endset %} {{ govukDetails({ "summaryText": "Existing certifiers by organisation", "html": existingCertifiersHtml, }) }}
{{ form.csrf_token }} {{ form.certifiers_data }} {{ form.submit }}
{% endblock %}