{% 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/summary-list/macro.html" import govukSummaryList %} {% 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 }} Mark grant as onboarding with Funding Service

Onboarding grants are shown as active on the grants list dashboard.

A grant should have a valid GGIS number before it is marked as onboarding.

{% set grant_team_users %} {% endset %} {{ govukSummaryList({ "rows": [{ "key": { "text": "Grant name" }, "value": { "text": grant.name }, }, { "key": { "text": "Grant description" }, "value": { "text": grant.description }, }, { "key": { "text": "GGIS number" }, "value": { "text": grant.ggis_number }, }, { "key": { "text": "Grant team users" }, "value": { "html": grant_team_users }, } ], "classes": "app-!-border-top-line govuk-!-margin-bottom-8" }) }}
{{ form.csrf_token }} {{ form.grant_id }} {{ form.submit }}
{% endblock %}