{% extends 'layouts/main.html' %} {% block title %}Run an Experiment{% endblock %} {% block content %} {% if stdout %}
Output Printed by the Subprocess

{% for line in stdout%} {{line}}
{% endfor %}

{% endif %} {% if stderr %}
Error Message from Subprocess; Read and Report!

{% for line in stderr%} {{line}}
{% endfor %}


{% endif %} {% endblock %}