{% extends "admin_extra_buttons/action_page.html" %} {% load i18n %} {% block extrahead %} {{ block.super }} {% if simulation and simulation.status == "NEW" %} {% endif %} {% endblock extrahead %} {% block content %} {{ form.media }} {{ admin_form.media }}
{% csrf_token %} {{ admin_form.form.non_field_errors }} {% with adminform=admin_form %} {% include "unfold/helpers/fieldsets_tabs.html" %} {% endwith %}
{% if stale_simulation %}
{% translate "This simulation was superseded by a newer run." %}
{% endif %} {% if simulation %}
{% if simulation.status == "NEW" %}
{% translate "Simulation running..." %} ({{ simulation.mode }})
{% elif simulation.status == "FAILED" %}
{% translate "Simulation failed" %} {% for error in simulation.data.errors %}
{{ error }}
{% endfor %}
{% else %}
{% translate "Simulation completed" %} ({{ simulation.mode }})
{% include "bitcaster/admin/event/includes/simulation_results.html" %} {% endif %}
{% endif %}
{% endblock content %}