summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/package_detail_base.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_detail_base.html20
1 files changed, 13 insertions, 7 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_detail_base.html b/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
index 9fa28a8f8a..17562a8845 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_detail_base.html
@@ -43,21 +43,25 @@
43{% endblock localbreadcrumb %} 43{% endblock localbreadcrumb %}
44 44
45{% block pagedetailinfomain %} 45{% block pagedetailinfomain %}
46 <div class="row span11"> 46 <div class="row">
47 <div class="col-md-12">
47 <div class="page-header"> 48 <div class="page-header">
48 {% block mainheading %} 49 {% block mainheading %}
49 <h1>{{package.fullpackagespec}}</h1> 50 <h1>{{package.fullpackagespec}}</h1>
50 {% endblock %} 51 {% endblock %}
51 </div> <!-- page-header --> 52 </div> <!-- page-header -->
52 </div> <!-- row span11 page-header --> 53 </div> <!-- col-md-12 page-header -->
54 </div> <!-- end row -->
53 55
54 {% block twocolumns %} 56 {% block twocolumns %}
55 <div class="row span7 tabbable"> 57 <div class="row">
58 <div class="col-md-8 tabbable">
56 {% block tabcontent %} 59 {% block tabcontent %}
57 {% endblock tabcontent %} 60 {% endblock tabcontent %}
58 </div> <!-- row span7 --> 61 </div> <!-- row col-md-8 -->
59 62
60 <div class="row span4 well"> 63 <div class="col-md-4">
64 <div class="well">
61 <h2>Package information</h2> 65 <h2>Package information</h2>
62 66
63 <!-- info presented as definition list --> 67 <!-- info presented as definition list -->
@@ -124,7 +128,7 @@
124 # Removed per team meeting of 1/29/2014 until 128 # Removed per team meeting of 1/29/2014 until
125 # decision on index search algorithm 129 # decision on index search algorithm
126 <a href="http://layers.openembedded.org" target="_blank"> 130 <a href="http://layers.openembedded.org" target="_blank">
127 <i class="icon-share get-info"></i> 131 <i class="glyphicon glyphicon-share get-info"></i>
128 </a> 132 </a>
129 {% endcomment %} 133 {% endcomment %}
130 {% endif %} 134 {% endif %}
@@ -144,6 +148,8 @@
144 <dd class="iscommit">{{package.recipe.layer_version.commit}}</dd> 148 <dd class="iscommit">{{package.recipe.layer_version.commit}}</dd>
145 149
146 </dl> 150 </dl>
147 </div> <!-- row4 well --> 151 <div> <!-- end well -->
152 </div> <!-- end 4-column section -->
148 {% endblock twocolumns %} 153 {% endblock twocolumns %}
154 </div> <!-- end row -->
149{% endblock pagedetailinfomain %} 155{% endblock pagedetailinfomain %}