{% extends "base.html" %}
{% block title %}{% if modelrun.name %}{{ modelrun.name }}{% else %}Model Run #{{ modelrun.id }}{% endif %}{% endblock %}
{% block content %}
{% if modelrun.name %}
{{ modelrun.name }}
#{{ modelrun.id }}
{% else %}
Model Run #{{ modelrun.id }}
{% endif %}
Back to List
{% if modelrun.state == 'created' %}
{% if request.session.simulation_warning %}
{# Warning state - show Start Anyway button #}
{% else %}
{# Normal state - show Run Simulation button #}
{% endif %}
{% endif %}
{% if modelrun.state == 'running' or modelrun.state == 'cancelling' %}
{% endif %}
{% if modelrun.can_rerun %}
{% endif %}
{% if modelrun.state != 'running' and modelrun.state != 'cancelling' %}
Delete
{% endif %}
{% include "steeloweb/partials/messages.html" %}
{% if request.session.simulation_warning and modelrun.state == 'created' %}
{# Display worker availability warning banner #}