summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/task.html
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-12-05 14:20:36 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-10 11:16:14 +0000
commit192583a91e17b15da4668dbacee035def1d68b0c (patch)
tree2dfef54dff47dddfb3005b619ee08d1731b63c2d /bitbake/lib/toaster/bldviewer/templates/task.html
parent415ebb738da2a9625d6cc1456f4e99e463797c31 (diff)
downloadpoky-192583a91e17b15da4668dbacee035def1d68b0c.tar.gz
bitbake: toaster: add pagination to the Simple UI
In an effort to make the Simple UI more usable and reponsive, this patch adds pagination support for the pages with lots of entries: Builds, Configuration and Tasks. (Bitbake rev: d4f075c050ad9ecebe750420d49961a7f30d090b) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/task.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/task.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/task.html b/bitbake/lib/toaster/bldviewer/templates/task.html
index 5d9887e848..6a9979e533 100644
--- a/bitbake/lib/toaster/bldviewer/templates/task.html
+++ b/bitbake/lib/toaster/bldviewer/templates/task.html
@@ -2,7 +2,7 @@
2 2
3{% block pagetitle %}Tasks{% endblock %} 3{% block pagetitle %}Tasks{% endblock %}
4{% block pagetable %} 4{% block pagetable %}
5 {% if not tasks %} 5 {% if not objects %}
6 <p>No tasks were executed in this build!</p> 6 <p>No tasks were executed in this build!</p>
7 {% else %} 7 {% else %}
8 8
@@ -23,7 +23,7 @@
23 <th>Depends</th> 23 <th>Depends</th>
24 </tr> 24 </tr>
25 25
26 {% for task in tasks %} 26 {% for task in objects %}
27 27
28 <tr class="data"> 28 <tr class="data">
29 <td>{{task.order}}</td> 29 <td>{{task.order}}</td>