{% extends "base.html" %} {% block title %}Delete {{ object.name|default:"Model Run" }}?{% endblock %} {% block content %}

Confirm Deletion

Are you sure you want to delete this model run?

This action cannot be undone!
{% if object.finished_at %} {% endif %} {% if object.data_preparation %} {% endif %}
Name: {{ object.name|default:"Model Run" }} #{{ object.id }}
Status: {{ object.get_state_display }}
Started: {{ object.started_at|date:"Y-m-d H:i:s" }}
Finished: {{ object.finished_at|date:"Y-m-d H:i:s" }}
Data Preparation: {{ object.data_preparation.name }}
{% if has_results or result_images_count > 0 or simulation_plots_count > 0 %}
The following data will be permanently deleted:
    {% if has_results %}
  • Simulation results and CSV data
  • {% endif %} {% if result_images_count > 0 %}
  • {{ result_images_count }} result image{{ result_images_count|pluralize }}
  • {% endif %} {% if simulation_plots_count > 0 %}
  • {{ simulation_plots_count }} simulation plot{{ simulation_plots_count|pluralize }}
  • {% endif %}
{% endif %} {% if object.config %}
Configuration Summary:
{% if object.config.total_steel_demand_scenario %} {% endif %}
Years: {{ object.config.start_year }} - {{ object.config.end_year }}
Demand Scenario: {{ object.config.total_steel_demand_scenario }}
{% endif %}
{% csrf_token %}
Cancel
{% endblock %}