summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-05-26 16:12:22 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 08:35:04 +0100
commitb2a68f55110b39aaf0b0d47bf533251a59a40a41 (patch)
tree7791ed85141e07f01c228619047740b235ee02dc /bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html
parent32d1e2dd25f288790450db48766cf115854712ba (diff)
downloadpoky-b2a68f55110b39aaf0b0d47bf533251a59a40a41.tar.gz
bitbake: toaster: port Task tables to ToasterTables widget
Port the Task based tables to ToasterTable. This is the Task, Time, CPU usage and Disk I/O tables. (Bitbake rev: bebcef7a4bf08b10e472475435ddc7a524364adb) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html b/bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html
index 4ce5c4a8a5..52cc0569f7 100644
--- a/bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html
+++ b/bitbake/lib/toaster/toastergui/templates/buildinfo-toastertable.html
@@ -12,12 +12,14 @@
12 12
13{% block buildinfomain %} 13{% block buildinfomain %}
14<div class="span10"> 14<div class="span10">
15{% url 'builtpackagestable' build.id as xhr_table_url %} 15{# xhr_table_url is just the current url so leave it blank #}
16{% with xhr_table_url='' %}
16 <div class="page-header"> 17 <div class="page-header">
17 <h1> 18 <h1>
18 {{title}} (<span class="table-count-{{table_name}}">0</span>) </h2> 19 {{title}} (<span class="table-count-{{table_name}}">0</span>) </h2>
19 </h1> 20 </h1>
20 </div> 21 </div>
21 {% include "toastertable.html" %} 22 {% include "toastertable.html" %}
23{% endwith %}
22</div> 24</div>
23{% endblock %} 25{% endblock %}