{% extends "base.html" %}
{% block contents %}
Last Run Information
Simulation Run
File: | {{simfile.full_filename }} |
DocString: | {{simfile.get_docstring }} |
When: | {{simfile.get_latest_run.execution_date }} |
Time: | {{simulationrun.get_latest_run.execution_time }} seconds |
Status: | {{simfile.get_status }} |
Return Code: | {{simfile.get_latest_run.return_code }} |
Exception: | {{simfile.get_latest_run.exception_type }} |
SimFile SHA1: | {{simfile.get_latest_run.simulation_sha1hash }}
(Now: {{simfile.get_current_checksum}}) |
Lib SHA1: | {{simfile.get_latest_run.library_sha1hash }} |
{% if simfile.last_run %}
More details about last run...
{% endif %}
File Contents
{{simfile.get_html_code|safe}}
{% endblock %}