summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/recipe.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/recipe.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/recipe.html13
1 files changed, 10 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe.html b/bitbake/lib/toaster/toastergui/templates/recipe.html
index 1d6d64e3c7..2aaff6b6bc 100644
--- a/bitbake/lib/toaster/toastergui/templates/recipe.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipe.html
@@ -12,13 +12,16 @@
12 12
13<!-- Begin container --> 13<!-- Begin container -->
14 14
15<div class="row span11"> 15<div class="row">
16 <div class="col-md-12">
16 <div class="page-header"> 17 <div class="page-header">
17 <h1>{{object.name}}_{{object.version}}</h1> 18 <h1>{{object.name}}_{{object.version}}</h1>
18 </div> 19 </div>
20 </div>
19</div> 21</div>
20 22
21<div class="row span7 tabbable"> 23<div class="row">
24 <div class="col-md-8 tabbable">
22 <ul class="nav nav-pills"> 25 <ul class="nav nav-pills">
23 <li class="{{tab_states.1}}"> 26 <li class="{{tab_states.1}}">
24 <a href="#information" data-toggle="tab"> 27 <a href="#information" data-toggle="tab">
@@ -231,7 +234,8 @@
231 </div> 234 </div>
232</div> 235</div>
233 236
234<div class="row span4 well"> 237<div class="col-md-4">
238 <div class="well">
235 <h2>About {{object.name}}</h2> 239 <h2>About {{object.name}}</h2>
236 <dl class="item-info"> 240 <dl class="item-info">
237 {% if object.summary %} 241 {% if object.summary %}
@@ -262,6 +266,9 @@
262 <dd>{{object.license}}</dd> 266 <dd>{{object.license}}</dd>
263 {% endif %} 267 {% endif %}
264 </dl> 268 </dl>
269 </div>
265</div> 270</div>
266 271
272</div> <!-- end row -->
273
267{% endblock %} 274{% endblock %}