mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 21:49:33 +02:00
bitbake: toaster: port all build analysis pages to bootstrap 3
Port all the pages in the build analysis area to bootstrap version 3. (Bitbake rev: f963b73f0bf32db2df39dd79d8d85184c280cda0) 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>
This commit is contained in:
committed by
Richard Purdie
parent
46271833be
commit
a7d498dfd3
@@ -6,7 +6,7 @@
|
||||
|
||||
{# only paginate if 10 or more rows unfiltered, all pages #}
|
||||
{% if object_count >= 10 %}
|
||||
<div>
|
||||
<div id="pagination-detail">
|
||||
<ul class="pagination">
|
||||
{%if objects.has_previous %}
|
||||
<li><a href="javascript:reload_params({'page':{{objects.previous_page_number}}})">«</a></li>
|
||||
@@ -23,16 +23,18 @@
|
||||
{%endif%}
|
||||
</ul>
|
||||
|
||||
<div class="pull-right">
|
||||
<span class="help-inline">Show rows:</span>
|
||||
<select class="pagesize">
|
||||
{% with "10 25 50 100 150" as list%}
|
||||
<form class="navbar-form navbar-right">
|
||||
<div class=form-group">
|
||||
<label>Show rows:</label>
|
||||
<select class="pagesize form-control">
|
||||
{% with "10 25 50 100 150" as list%}
|
||||
{% for i in list.split %}
|
||||
<option value="{{i}}">{{i}}</option>
|
||||
<option value="{{i}}">{{i}}</option>
|
||||
{% endfor %}
|
||||
{% endwith %}
|
||||
</select>
|
||||
</div>
|
||||
{% endwith %}
|
||||
</select>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<!-- Update page display settings -->
|
||||
|
||||
Reference in New Issue
Block a user