summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/tasks.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2016-04-12 15:56:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 08:35:03 +0100
commit443f7b39158c891015a791814b9b1fe2324edc41 (patch)
tree3f570a138594273bc7498225e066b7f9a99bf0c5 /bitbake/lib/toaster/toastergui/templates/tasks.html
parent79e0eb9e52e9b954aa3b6bc6dee15a75b5eb990c (diff)
downloadpoky-443f7b39158c891015a791814b9b1fe2324edc41.tar.gz
bitbake: toaster: Migrate project configuration from bootstrap 2 to bootstrap 3
Convert all the HTML templates, JS and CSS in the project parts of toaster to use bootstrap 3. (Bitbake rev: 69527a731eada699d3f604ff8f3ae9410981ba9b) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> 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/tasks.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/tasks.html16
1 files changed, 7 insertions, 9 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/tasks.html b/bitbake/lib/toaster/toastergui/templates/tasks.html
index 84bc10386d..b3b7621e60 100644
--- a/bitbake/lib/toaster/toastergui/templates/tasks.html
+++ b/bitbake/lib/toaster/toastergui/templates/tasks.html
@@ -39,7 +39,7 @@
39{% endblock %} 39{% endblock %}
40 40
41{% block buildinfomain %} 41{% block buildinfomain %}
42<div class="span10"> 42<div class="col-md-10">
43{% if not request.GET.filter and not request.GET.search and not objects.paginator.count %} 43{% if not request.GET.filter and not request.GET.search and not objects.paginator.count %}
44 <!-- Empty - no data in database --> 44 <!-- Empty - no data in database -->
45 <div class="page-header"> 45 <div class="page-header">
@@ -64,14 +64,12 @@
64 </div> 64 </div>
65 65
66 {% if objects.paginator.count == 0 %} 66 {% if objects.paginator.count == 0 %}
67 <div class="row-fluid"> 67 <div class="alert">
68 <div class="alert"> 68 <form class="no-results input-append" id="searchform">
69 <form class="no-results input-append" id="searchform"> 69 <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="input-append-addon btn" tabindex="-1"><i class="glyphicon glyphicon-remove"></i></a>{% endif %}
70 <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 %} 70 <button class="btn" type="submit" value="Search">Search</button>
71 <button class="btn" type="submit" value="Search">Search</button> 71 <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all tasks</button>
72 <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all tasks</button> 72 </form>
73 </form>
74 </div>
75 </div> 73 </div>
76 74
77 75