summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/tasks.html
blob: ca7e187f7361713605226e7f61c6957ce40ae37e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{% extends "basebuildpage.html" %}
{% load projecttags %}

{% block localbreadcrumb %}
<li>{{title}}</li>
{% endblock %}

{% block nav-tasks %}
  {% if 'Tasks' == title %}
    <li class="active"><a href="{% url 'tasks' build.pk %}">Tasks</a></li>
  {% else %}
    <li><a href="{% url 'tasks' build.pk %}">Tasks</a></li>
  {% endif %}
{% endblock %}
{% block nav-buildtime %}
  {% if 'Time' == title %}
    <li class="active"><a href="{% url 'buildtime' build.pk %}">Time</a></li>
  {% else %}
    <li><a href="{% url 'buildtime' build.pk %}">Time</a></li>
  {% endif %}
{% endblock %}
{% block nav-cpuusage %}
  {% if 'CPU usage' == title %}
    <li class="active"><a href="{% url 'cpuusage' build.pk %}">CPU usage</a></li>
  {% else %}
    <li><a href="{% url 'cpuusage' build.pk %}">CPU usage</a></li>
  {% endif %}
{% endblock %}
{% block nav-diskio %}
  {% if 'Disk I/O' == title %}
    <li class="active"><a href="{% url 'diskio' build.pk %}">Disk I/O</a></li>
  {% else %}
    <li><a href="{% url 'diskio' build.pk %}">Disk I/O</a></li>
  {% endif %}
{% endblock %}

{% block buildinfomain %}
<div class="span10">
{% if not request.GET.filter and not request.GET.search and not objects.paginator.count %}
  <!-- Empty - no data in database -->
  <div class="page-header">
  <h1>{{title}}</h1>
  </div>
  <div class="alert alert-info lead">
  No data was recorded for this build.
  </div>

{% else %}

  <div class="page-header">
  <h1>
  {% if  request.GET.filter and objects.paginator.count >  0 or request.GET.search and objects.paginator.count >  0 %}
      {{objects.paginator.count}} task{{objects.paginator.count|pluralize}} found
  {%elif request.GET.filter and objects.paginator.count == 0 or request.GET.search and objects.paginator.count == 0 %}
      No tasks found
  {%else%}
      {{title}}
  {%endif%}
  </h1>
  </div>

  {% if objects.paginator.count == 0 %}
  <div class="row-fluid">
      <div class="alert">
        <form class="no-results input-append" id="searchform">
            <input id="search" name="search" class="input-xxlarge" type="text" value="{{request.GET.search}}"/>{% if request.GET.search %}<a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a>{% endif %}
            <button class="btn" type="submit" value="Search">Search</button>
            <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all tasks</button>
        </form>
      </div>
  </div>


  {% else %}
  {% include "basetable_top.html" %}

    {% for task in objects %}
        <tr {{ task|task_color }} class="flash" id="{{task.order}}" name="{{task.order}}">
            <td class="order">
                <a href="{%url "task" build.pk task.pk%}">{{task.order}}</a>
            </td>
            <td class="recipe_name" >
                <a href="{% url "recipe" build.pk task.recipe.pk %}">{{task.recipe.name}}</a>
            </td>
            <td class="recipe_version">
                <a href="{% url "recipe" build.pk task.recipe.pk %}">{{task.recipe.version}}</a>
            </td>
            <td class="task_name">
                <a href="{%url "task" build.pk task.pk%} ">{{task.task_name}}</a>
            </td>
            <td class="executed">
                <a href="{%url "task" build.pk task.pk%} ">{{task.get_executed_display}}</a>
            </td>
            <td class="outcome">
                <a href="{%url "task" build.pk task.pk%} ">{{task.get_outcome_display}} </a>
                <i class="icon-question-sign get-help hover-help" title="{{task.get_outcome_help}}"></i>
            </td>
            <td class="cache_attempt">
                <a href="{%url "task" build.pk task.pk%} ">{{task.get_sstate_result_display|format_none_and_zero}}</a>
            </td>
            <td class="time_taken">
                {{task.elapsed_time|format_none_and_zero|floatformat:2}}
            </td>
            <td class="cpu_used">
                {{task.cpu_usage|format_none_and_zero|floatformat:2}}{% if task.cpu_usage %}%{% endif %}
            </td>
            <td class="disk_io">
                {{task.disk_io|format_none_and_zero}}
            </td>
            <td class="task_log">
                {{task.logfile}}
            </td>
        </tr>
    {% endfor %}

  {% include "basetable_bottom.html" %}
  {% endif %} {# objects.paginator.count #}
{% endif %} {# empty #}
</div>
{% endblock %}