{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}

← Back to health checks

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
Kind
{{ config.kind }}
Name
{{ config.name }}
Owner
{{ config.owner }}
Schedule
{% if config.schedule %}{{ config.schedule }}{% else %}Manual only{% endif %}

Trigger workflow

{% csrf_token %}
{% if form.dry_run.help_text %}

{{ form.dry_run.help_text }}

{% endif %} {{ form.dry_run.errors }}
{{ form.batch_size }} {% if form.batch_size.help_text %}

{{ form.batch_size.help_text }}

{% endif %} {{ form.batch_size.errors }}
{{ form.max_concurrent }} {% if form.max_concurrent.help_text %}

{{ form.max_concurrent.help_text }}

{% endif %} {{ form.max_concurrent.errors }}
{{ form.rollout_percentage }} {% if form.rollout_percentage.help_text %}

{{ form.rollout_percentage.help_text }}

{% endif %} {{ form.rollout_percentage.errors }}
{{ form.active_since_days }} {% if form.active_since_days.help_text %}

{{ form.active_since_days.help_text }}

{% endif %} {{ form.active_since_days.errors }}
{{ form.team_ids }} {% if form.team_ids.help_text %}

{{ form.team_ids.help_text }}

{% endif %} {{ form.team_ids.errors }}

Recent runs

{% include "admin/health_checks/_run_history.html" %}
{% endblock %}