summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-21 14:00:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-17 13:59:38 +0000
commit3cbe113771c5beef69ffce5bc98ff664d67b84b3 (patch)
tree610944bfd23d784e189dc5abdf04710a6f07f226
parent1caad7d592eac3f8cdb59cea049e03693d389136 (diff)
downloadpoky-3cbe113771c5beef69ffce5bc98ff664d67b84b3.tar.gz
bitbake: toaster: Sort layers in alphabetical order
In the Summary tab of the Configuration page, make sure that the table of layers is sorted by layer name in ascending alphabetical order. (Bitbake rev: f339555df40307420ce80a4ef8cba1a4d284d380) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/toaster/toastergui/templates/configuration.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/configuration.html b/bitbake/lib/toaster/toastergui/templates/configuration.html
index ddfa5af9ca..674f896b03 100644
--- a/bitbake/lib/toaster/toastergui/templates/configuration.html
+++ b/bitbake/lib/toaster/toastergui/templates/configuration.html
@@ -49,7 +49,7 @@
49 <th>Layer directory</th> 49 <th>Layer directory</th>
50 </tr> 50 </tr>
51 </thead> 51 </thead>
52 <tbody>{% for lv in build.layer_version_build.all %} 52 <tbody>{% for lv in build.layer_version_build.all|dictsort:"layer.name" %}
53 <tr> 53 <tr>
54 <td>{{lv.layer.name}}</td> 54 <td>{{lv.layer.name}}</td>
55 <td>{{lv.branch}}</td> 55 <td>{{lv.branch}}</td>