summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/recipe_packages.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/recipe_packages.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/recipe_packages.html15
1 files changed, 11 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe_packages.html b/bitbake/lib/toaster/toastergui/templates/recipe_packages.html
index d25847bc0d..2c2efd8c17 100644
--- a/bitbake/lib/toaster/toastergui/templates/recipe_packages.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipe_packages.html
@@ -11,13 +11,16 @@
11 11
12<!-- Begin container --> 12<!-- Begin container -->
13 13
14<div class="row-fluid span11"> 14<div class="row">
15 <div class="col-md-12">
15 <div class="page-header"> 16 <div class="page-header">
16 <h1>{{recipe.name}}_{{recipe.version}}</h1> 17 <h1>{{recipe.name}}_{{recipe.version}}</h1>
17 </div> 18 </div>
19 </div>
18</div> 20</div>
19 21
20<div class="row-fluid span7 tabbable"> 22<div class="row">
23 <div class="col-md-8 tabbable">
21 <ul class="nav nav-pills"> 24 <ul class="nav nav-pills">
22 <li> 25 <li>
23 <a href="{% url "recipe" build.pk recipe.id "1" %}"> 26 <a href="{% url "recipe" build.pk recipe.id "1" %}">
@@ -86,9 +89,10 @@
86 {% endif %} 89 {% endif %}
87 </div> {# tab-pane #} 90 </div> {# tab-pane #}
88 </div> {# tab-content #} 91 </div> {# tab-content #}
89</div> {# span7 #} 92</div> {# col-md-8 #}
90 93
91<div class="row span4 well"> 94<div class="col-md-4">
95 <div class="well">
92 <h2>About {{recipe.name}}</h2> 96 <h2>About {{recipe.name}}</h2>
93 <dl class="item-info"> 97 <dl class="item-info">
94 {% if recipe.summary %} 98 {% if recipe.summary %}
@@ -119,5 +123,8 @@
119 <dd>{{recipe.license}}</dd> 123 <dd>{{recipe.license}}</dd>
120 {% endif %} 124 {% endif %}
121 </dl> 125 </dl>
126 </div>
122</div> 127</div>
128
129</div> <!-- end row -->
123{% endblock pagedetailinfomain %} 130{% endblock pagedetailinfomain %}