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

{{current_filegroup.name}}

{% for simfile in simfiles %}

{{simfile.get_short_filename}}

{% if simfile.get_last_run %} {% if simfile.get_docstring %}
 {{simfile.get_docstring}} 
{% else %}
(No Docstring)
{% endif %} {% if not simfile.is_queued %} {% for i in simfile.get_last_run.output_images.all %} 1 {% endfor %} {% else %} (Currently Queued to Run) {% endif %} {% else %} [Never been run]: {% endif %}
{% endfor %}
{% endblock %}