{% 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 %} {{ grant.name }} - {{ collection.name }}

Override certifiers for this grant

Grant-specific certifier overrides allow you to set different certifiers for {{ grant.name }} that replace the organisation-level certifiers.

{{ govukInsetText({ "html": "When any grant-specific certifiers exist for an organisation, only those certifiers (not the organisation-level ones) will be used for this grant." }) }}
{% set existingCertifiersHtml %}

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

{{ existingCertifiersTable(certifiers_by_org, overrides=True) }} {% endset %} {{ govukDetails({ "summaryText": "Existing grant-specific certifiers by organisation", "html": existingCertifiersHtml, }) }}

Add grant-specific certifier

{{ form.csrf_token }} {{ form.organisation_id }} {{ form.full_name }} {{ form.email }} {{ form.submit }}
{% endblock %}