{% from "macros.jinja" import hiding_control, format_output %} {% extends "base_logged.html" %} {% block page %}

{{ job.info.Function }} on {{ job.info.Target }} started at {{ job.info.StartTime }} by {{ job.info.User }} Arguments {{ job.info.Arguments|format_arguments }}

{% if job.info.Function == 'state.highstate' and renderer != 'highstate' %} {% elif job.info.Function != 'state.highstate' and renderer == 'highstate' %} {% endif %} {% if job.info.Function != 'state.highstate' and renderer != 'aggregate' %} {% elif job.info.Function != 'state.highstate' and renderer == 'aggregate' %} {% endif %}
{% if job.status == 'running' %}

Job is running, please wait !

{% else %} {% block job_result %} {% endblock %} {% endif %} {% endblock %}