{% extends "base.html" %} {% block title %}{{ config['APP_TITLE'] }} - Test Release States{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Test Release States

Debug only

Click a scenario to create a test release in that state and view it.

{% for id, scenario in scenarios.items() %}
{% if scenario.state_badge == 'starting' %} starting {% elif scenario.state_badge == 'running' %} running {% elif scenario.state_badge == 'waiting-for-user' %} waiting {% elif scenario.state_badge == 'errored' %} errored {% elif scenario.state_badge == 'completed' %} completed {% elif scenario.state_badge == 'canceled' %} canceled {% endif %} {{ scenario.title }}

{{ scenario.description }}

{% endfor %}
{% endblock %}