{% extends "admin/master.html" %} {% import 'admin/layout.html' as layout with context %} {% from 'govuk_frontend_jinja/components/tag/macro.html' import govukTag %} {% from 'common/govuk/tabs/macro.html' import govukTabs %} {% macro noneHint() %} None {% endmacro %} {% macro statusTag(has_diff) %} {% if has_diff %} {{ govukTag({"text": "Out of sync", "classes": "govuk-tag--red"}) }} {% else %} {{ govukTag({"text": "OK", "classes": "govuk-tag--green"}) }} {% endif %} {% endmacro %} {% macro userList(users) %} {% if users %}
| Organisation | Delta certifiers | Funding Service certifiers | Status |
|---|---|---|---|
| {{ row.organisation.name }} | {{ deltaOfficerList(row.delta_officers) }} | {{ userList(row.our_certifiers) }} | {{ statusTag(row.has_diff) }} |
| Organisation | Delegated certifier | Delta access groups | Funding Service grants |
|---|---|---|---|
| {{ row.organisation.name }} | {% endif %}{{ certifierLine(entry.name, entry.email) }} | {{ accessGroupsList(entry.delegated_access_groups) }} | {{ grantsList(entry.our_grants) }} |
| {{ row.organisation.name }} | {{ noneHint() }} | {{ noneHint() }} | {{ noneHint() }} |
Compare certifiers configured in Delta against the certifiers set up in the Funding Service. The Delta export was last updated on {{ format_datetime_short(delta_last_updated_at) }}.
{{ govukTabs({ "items": [ {"label": "Certifiers", "id": "certifiers-by-organisation", "panel": {"html": orgTabPanel }}, {"label": "Delegated certifiers", "id": "delegated-certifiers", "panel": {"html": delegatedTabPanel}} ] }) }}