{% extends "layouts/base.html" %} {% block title %} Tasks {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}
Volt logo
{% set stdout = task.get('result').get('module').get('stdout') %} {% if stdout is iterable and (stdout is not string and stdout is not mapping) %} {%for i in stdout %}

{{i}}

{% endfor %} {% else %}

{{stdout}}

{% endif %}
{% include 'includes/footer.html' %} {% endblock content %} {% block javascripts %} {% endblock javascripts %}