summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/configuration.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/configuration.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/configuration.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/configuration.html47
1 files changed, 25 insertions, 22 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/configuration.html b/bitbake/lib/toaster/toastergui/templates/configuration.html
index 85d6a622a8..83bc5b21e0 100644
--- a/bitbake/lib/toaster/toastergui/templates/configuration.html
+++ b/bitbake/lib/toaster/toastergui/templates/configuration.html
@@ -12,14 +12,14 @@
12 12
13{% block buildinfomain %} 13{% block buildinfomain %}
14<!-- page title --> 14<!-- page title -->
15<div class="row-fluid span10"> 15<div class="col-md-10">
16
16 <div class="page-header"> 17 <div class="page-header">
17 <h1>Configuration</h1> 18 <h1>Configuration</h1>
18 </div> 19 </div>
19</div>
20 20
21<!-- configuration table --> 21<!-- configuration table -->
22<div class="row-fluid pull-right span10" id="navTab"> 22<div id="navTab">
23<ul class="nav nav-pills"> 23<ul class="nav nav-pills">
24 <li class="active"><a href="#">Summary</a></li> 24 <li class="active"><a href="#">Summary</a></li>
25 <li class=""><a href="{% url 'configvars' build.id %}">BitBake variables</a></li> 25 <li class=""><a href="{% url 'configvars' build.id %}">BitBake variables</a></li>
@@ -44,29 +44,32 @@
44 {% endfor %} </ul> </dd> {% endif %} 44 {% endfor %} </ul> </dd> {% endif %}
45 </dl> 45 </dl>
46 <h3>Layers</h3> 46 <h3>Layers</h3>
47 <div class="span9" style="margin-left:0px;"> 47 <div class="row">
48 <table class="table table-bordered table-hover"> 48 <div class="col-md-9">
49 <thead> 49 <table class="table table-bordered table-hover">
50 <tr> 50 <thead>
51 <th>Layer</th> 51 <tr>
52 <th>Layer branch</th> 52 <th>Layer</th>
53 <th>Layer commit</th> 53 <th>Layer branch</th>
54 </tr> 54 <th>Layer commit</th>
55 </thead> 55 </tr>
56 <tbody>{% for lv in build.layer_version_build.all|dictsort:"layer.name" %} 56 </thead>
57 <tr> 57 <tbody>{% for lv in build.layer_version_build.all|dictsort:"layer.name" %}
58 <tr>
58 <td>{{lv.layer.name}}</td> 59 <td>{{lv.layer.name}}</td>
59 <td>{{lv.branch}}</td> 60 <td>{{lv.branch}}</td>
60 <td> <a class="btn" data-content="<ul class='unstyled'> 61 <td> <a class="btn" data-content="<ul class='list-unstyled'>
61 <li>{{lv.commit}}</li> </ul>"> 62 <li>{{lv.commit}}</li> </ul>">
62 {{lv.commit|truncatechars:13}} 63 {{lv.commit|truncatechars:13}}
63 </a></td> 64 </a></td>
64 </tr>{% endfor %} 65 </tr>{% endfor %}
65 </tbody> 66 </tbody>
66 </table> 67 </table>
68 </div>
67 </div> 69 </div>
68 </div> 70 </div>
69 71
70
71</div> 72</div>
73
74</div> <!-- end of 10-column section -->
72{% endblock %} 75{% endblock %}