{% extends "base.html" %} {% block contents %}

Failed Simulation

{% csrf_token %} {% csrf_token %} {% for sim_file in failed_simulations %} {% endfor %}
File Details
Exception: {{sim_file.get_last_run.exception_type}}
{{sim_file.get_last_run.exception_traceback}} 

Timeouts

{% csrf_token %} {% csrf_token %} {% for sim_file in timeout_simulations %} {% endfor %}
File Last Run Result DocString
{{sim_file.get_short_filename }} {{sim_file.get_last_run.execution_date}} {{sim_file.get_last_run.get_status}} {{sim_file.get_docstring}}

NonZero Simulations

{% csrf_token %} {% csrf_token %} {% for sim_file in nonzero_exitcode_simulations %} {% endfor %}
File Last Run Result DocString
{{sim_file.get_short_filename }} {{sim_file.get_last_run.execution_date}} {{sim_file.get_last_run.get_status}} {{sim_file.get_docstring}}

Changed Simulation

{% csrf_token %} {% csrf_token %} {% for sim_file in changed_simulations %} {% endfor %}
File Last Run Result DocString
{{sim_file.get_short_filename }} {{sim_file.get_last_run.execution_date}} {{sim_file.get_last_run.get_status}} {{sim_file.get_docstring}}

Not Run

{% csrf_token %} {% csrf_token %} {% for sim_file in notrun_simulations %} {% endfor %}
File Last Run Result DocString
{{sim_file.get_short_filename }} {{sim_file.get_last_run.execution_date}} {{sim_file.get_last_run.get_status}} {{sim_file.get_docstring}}
{% endblock %}