{% extends "basebuildpage.html" %} {% load projecttags %} {% block localbreadcrumb %}
  • {{title}}
  • {% endblock %} {% block buildinfomain %}
    {% if objects.paginator.count == 0 %}
    {% if request.GET.search %}{% endif %}
    {% else %} {% include "basetable_top.html" %} {% for task in objects %} {{task.order}} {{task.recipe.name}} {{task.recipe.version}} {{task.task_name}} {{task.get_executed_display}} {{task.get_outcome_display}} {{task.get_sstate_result_display|format_none_and_zero}} {{task.elapsed_time|format_none_and_zero|floatformat:2}} {{task.cpu_usage|format_none_and_zero|floatformat:2}}{% if task.cpu_usage %}%{% endif %} {{task.disk_io|format_none_and_zero}} {{task.logfile}} {% endfor %} {% include "basetable_bottom.html" %} {% endif %}
    {% endblock %}