{% extends "basebuildpage.html" %} {% load projecttags %} {% block localbreadcrumb %}
  • All tasks
  • {% endblock %} {% block buildinfomain %}
    {% include "basetable_top.html" %} {% if not objects %}

    No tasks were executed in this build!

    {% else %} {% for task in objects %} {{task.order}} {{task.recipe.name}} {{task.recipe.version}} {{task.task_name}} {% if task.task_executed %} Executed {% else %} Not executed {% endif %} {{task.get_outcome_display}} {{task.get_sstate_result_display|format_none_and_zero}} {{task.elapsed_time|format_none_and_zero}} {{task.cpu_usage|format_none_and_zero}} {{task.disk_io|format_none_and_zero}} {{task.logfile}} {% endfor %} {% endif %} {% include "basetable_bottom.html" %}
    {% endblock %}