{% extends "layout.html" %} {% from "_listhelpers.html" import render_list %} {% block title %}Home{% endblock %} {% block body %} {% if error %}
Error: {{ error }}
{% endif %} {{ render_list("New Simulations",new_simulations,is_new=True) }} {{ render_list("Current Acitive Simulations",active_simulations) }} {{ render_list("Finished Simulations",finish_simulations) }} {{ render_list("Aborted Simulations",abort_simulations) }} {% endblock %}