{% 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/task-list/macro.html" import govukTaskList %} {% from "govuk_frontend_jinja/components/tag/macro.html" import govukTag %} {% block beforeContent %} {% if grant.collections|length == 1 %} {{ govukBackLink({"text": "Back", "href": url_for('collection_lifecycle.index') }) }} {% else %} {{ govukBackLink({"text": "Back", "href": url_for('collection_lifecycle.select_collection', grant_id=grant.id) }) }} {% endif %} {% endblock %} {% block action_panel %}
Prepare for a {{ collection.type.constants.singular }} to go live by completing these tasks.
Set up MHCLG form designers to allow testing the Access grant funding recipient journeys.
{% set test_rows=[] %} {% do test_rows.append({ "title": {"text": "Add form designers to test Access grant funding", "classes": "govuk-link--no-visited-state"}, "status": {"html": govukTag({"text": (test_users_count|default(0)) ~ (" test user" if (test_users_count|default(0)) == 1 else " test users"), "classes": "govuk-tag--blue"})}, "href": url_for('collection_lifecycle.set_up_test_grant_recipient_users', grant_id=grant.id, collection_id=collection.id), }) %} {{ govukTaskList({ "idPrefix": "testing-tasks", "items": test_rows, "attributes": {"id": "testing-tasks"} }) }}