{% extends "base.html" %} {% block title %}Oozappa - Jobset : {{ jobset.title }}{% endblock %} {% block headline %} Jobset {{ jobset.title }} {% endblock %} {% block body %}
description: {{ jobset.description }}
{% for job in jobset.jobs %} {% endfor %}
EnvironmentTASKDescription
{{ job.environment.name }} {{ job.tasks }} {{ job.description }}
{% if jobset.cli_only %}

CLI Only

{% else %}

Running log

{% endif %} {% if executelog_list %}

Execute Logs

{% for el in executelog_list %} {% endfor %}
StartedFinishedTime in sec.Result
{{ el.started|datetimefmt }} {{ el.finished|datetimefmt }} {{ el.execute_time() }} {% if el.success %}
  • Success
  • {% else %}
  • Fail
  • {% endif %}
    {% endif %} {% endblock %}