summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/bpackage.html
diff options
context:
space:
mode:
authorMihail Stanciu <stanciux.mihail@intel.com>2015-05-04 07:47:10 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-12 12:14:13 +0100
commit44b7b671541e24ff9063cd71ad56b1b6dfd41651 (patch)
tree4e9bdd898f79eb2e14b237f709de2cbe93b9fa98 /bitbake/lib/toaster/toastergui/templates/bpackage.html
parent1e625fcc5f4d024d60ce9dd7ed27cb9e92f23a27 (diff)
downloadpoky-44b7b671541e24ff9063cd71ad56b1b6dfd41651.tar.gz
bitbake: toaster: <Add class id to a few columns>
Added class ids to columns that were missing them in the Packages and Recipes pages. This is required for Toaster UI automation efforts. [YOCTO #7377] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/bpackage.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/bpackage.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/bpackage.html b/bitbake/lib/toaster/toastergui/templates/bpackage.html
index 80229f908d..6fbdc7b92d 100644
--- a/bitbake/lib/toaster/toastergui/templates/bpackage.html
+++ b/bitbake/lib/toaster/toastergui/templates/bpackage.html
@@ -60,9 +60,9 @@
60 <tr class="data"> 60 <tr class="data">
61 61
62 <!-- Package --> 62 <!-- Package -->
63 <td><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.name}}</a></td> 63 <td class="package_name"><a href="{% url "package_built_detail" build.pk package.pk %}">{{package.name}}</a></td>
64 <!-- Package Version --> 64 <!-- Package Version -->
65 <td>{%if package.version%}<a href="{% url "package_built_detail" build.pk package.pk %}">{{package.version}}-{{package.revision}}</a>{%endif%}</td> 65 <td class="package_version">{%if package.version%}<a href="{% url "package_built_detail" build.pk package.pk %}">{{package.version}}-{{package.revision}}</a>{%endif%}</td>
66 <!-- Package Size --> 66 <!-- Package Size -->
67 <td class="size sizecol">{{package.size|filtered_filesizeformat}}</td> 67 <td class="size sizecol">{{package.size|filtered_filesizeformat}}</td>
68 <!-- License --> 68 <!-- License -->