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.html23
1 files changed, 14 insertions, 9 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipe_packages.html b/bitbake/lib/toaster/toastergui/templates/recipe_packages.html
index 2c2efd8c17..37a586f389 100644
--- a/bitbake/lib/toaster/toastergui/templates/recipe_packages.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipe_packages.html
@@ -13,7 +13,7 @@
13 13
14<div class="row"> 14<div class="row">
15 <div class="col-md-12"> 15 <div class="col-md-12">
16 <div class="page-header"> 16 <div class="page-header build-data">
17 <h1>{{recipe.name}}_{{recipe.version}}</h1> 17 <h1>{{recipe.name}}_{{recipe.version}}</h1>
18 </div> 18 </div>
19 </div> 19 </div>
@@ -21,28 +21,33 @@
21 21
22<div class="row"> 22<div class="row">
23 <div class="col-md-8 tabbable"> 23 <div class="col-md-8 tabbable">
24 <ul class="nav nav-pills"> 24 <ul class="nav nav-tabs">
25 <li> 25 <li>
26 <a href="{% url "recipe" build.pk recipe.id "1" %}"> 26 <a href="{% url "recipe" build.pk recipe.id "1" %}">
27 <i class="icon-question-sign get-help" title="Build-related information about the recipe"></i> 27 <span class="glyphicon glyphicon-question-sign get-help" title="Build-related
28 information about the recipe"></span>
28 Recipe details 29 Recipe details
29 </a> 30 </a>
30 </li> 31 </li>
31 <li class="active"> 32 <li class="active">
32 <a href="#packages-built" data-toggle="tab"> 33 <a href="#packages-built" data-toggle="tab">
33 <i class="icon-question-sign get-help" title="The packaged output resulting from building the recipe"></i> 34 <span class="glyphicon glyphicon-question-sign get-help" title="The packaged
35 output resulting from building the recipe"></span>
34 Packages ({{object_count}}) 36 Packages ({{object_count}})
35 </a> 37 </a>
36 </li> 38 </li>
37 <li> 39 <li>
38 <a href="{% url "recipe" build.pk recipe.id "3" %}"> 40 <a href="{% url "recipe" build.pk recipe.id "3" %}">
39 <i class="icon-question-sign get-help" title="The recipe build-time dependencies (i.e. other recipes)"></i> 41 <span class="glyphicon glyphicon-question-sign get-help" title="The recipe
42 build-time dependencies (i.e. other recipes)"></span>
40 Build dependencies ({{recipe.r_dependencies_recipe.all.count}}) 43 Build dependencies ({{recipe.r_dependencies_recipe.all.count}})
41 </a> 44 </a>
42 </li> 45 </li>
43 <li> 46 <li>
44 <a href="{% url "recipe" build.pk recipe.id "4" %}"> 47 <a href="{% url "recipe" build.pk recipe.id "4" %}">
45 <i class="icon-question-sign get-help" title="The recipe build-time reverse dependencies (i.e. the recipes that depend on this recipe)"></i> 48 <span class="glyphicon glyphicon-question-sign get-help" title="The recipe
49 build-time reverse dependencies (i.e. the recipes that
50 depend on this recipe)"></span>
46 Reverse build dependencies ({{recipe.r_dependencies_depends.all.count}}) 51 Reverse build dependencies ({{recipe.r_dependencies_depends.all.count}})
47 </a> 52 </a>
48 </li> 53 </li>
@@ -75,8 +80,8 @@
75 80
76 <tr> 81 <tr>
77 <td><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.name}}</a></td> 82 <td><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.name}}</a></td>
78 <td><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.version}}_{{package.revision}}</a></td> 83 <td>{{package.version}}_{{package.revision}}</td>
79 <td class="sizecol"><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.size|filtered_filesizeformat}}</a></td> 84 <td class="sizecol">{{package.size|filtered_filesizeformat}}</td>
80 </tr> 85 </tr>
81 86
82 {% endfor %} 87 {% endfor %}