summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-10-14 13:20:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-16 14:13:22 +0100
commit24e5a178e1a6539b10580285ff83be28cc933b82 (patch)
treeae43398dd57510d98593f37eca785c87f42b285b /bitbake
parentc895838189462158e0785376216b630d572e53f6 (diff)
downloadpoky-24e5a178e1a6539b10580285ff83be28cc933b82.tar.gz
bitbake: toaster: Have 'Version' next to recipe name
In all Toaster tables we show the version next to the recipe or package names, with one exception: the recipes table in the layer details page, where we are showing the version next to the recipe description. This patch moves the version column next to the recipe name, for consistency with all other Toaster tables. (Bitbake rev: b5af7084b28158a8a9eaf78db463555ae8e0f620) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/tables.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/tables.py b/bitbake/lib/toaster/toastergui/tables.py
index b10445b00f..9c9cda4e95 100644
--- a/bitbake/lib/toaster/toastergui/tables.py
+++ b/bitbake/lib/toaster/toastergui/tables.py
@@ -432,12 +432,12 @@ class LayerRecipesTable(RecipesTable):
432 orderable=True, 432 orderable=True,
433 field_name="name") 433 field_name="name")
434 434
435 self.add_column(title="Description",
436 field_name="get_description_or_summary")
437
438 self.add_column(title="Version", 435 self.add_column(title="Version",
439 field_name="version") 436 field_name="version")
440 437
438 self.add_column(title="Description",
439 field_name="get_description_or_summary")
440
441 build_recipe_template ='<button class="btn btn-block build-recipe-btn" data-recipe-name="{{data.name}}" {%if extra.in_prj == 0 %}disabled="disabled"{%endif%}>Build recipe</button>' 441 build_recipe_template ='<button class="btn btn-block build-recipe-btn" data-recipe-name="{{data.name}}" {%if extra.in_prj == 0 %}disabled="disabled"{%endif%}>Build recipe</button>'
442 442
443 self.add_column(title="Build recipe", 443 self.add_column(title="Build recipe",