#{{ loop.index }} {{ stack.file_short }}:{{stack.lineno }}
{% for lineno, content in stack.file_contents.items() %}
{% if stack.language == 'python' %} {{ content|safe }} {% else %} {{ content }} {% endif %} {% endfor %}
{% if stack.variables %}
{% for variable, value in stack.variables.items() %}
{{ variable }}
{{ value }}
{% endfor %}
{% else %}
{% endif %}