summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/tables.py
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2016-01-15 13:00:47 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-15 16:29:59 +0000
commitef93dce7e164e2b9ff764937d4365a9748a03c83 (patch)
tree4915d2124827962dea21f6ede49ddbf2165e8e5f /bitbake/lib/toaster/toastergui/tables.py
parent417f1d3f5306c668e30f2223048b542a46dd5d59 (diff)
downloadpoky-ef93dce7e164e2b9ff764937d4365a9748a03c83.tar.gz
bitbake: toastergui: switch projects/ view to ToasterTable
Remove the old projects page and replace with the new ToasterTable-based version. NB although the projects.html template is no longer required, it's been left in as there will be changes applied to it for the new theme. These changes will have to then be transferred from the projects.html template to projects-toastertable.html. Similarly, the code for the projects page in views.py has been retained. [YOCTO #8738] (Bitbake rev: ebe7831ef65e78a9d100f29a63311518577fc838) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/tables.py')
-rw-r--r--bitbake/lib/toaster/toastergui/tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/tables.py b/bitbake/lib/toaster/toastergui/tables.py
index cc9b5aef40..2e3c8a6956 100644
--- a/bitbake/lib/toaster/toastergui/tables.py
+++ b/bitbake/lib/toaster/toastergui/tables.py
@@ -638,7 +638,7 @@ class ProjectsTable(ToasterTable):
638 638
639 def __init__(self, *args, **kwargs): 639 def __init__(self, *args, **kwargs):
640 super(ProjectsTable, self).__init__(*args, **kwargs) 640 super(ProjectsTable, self).__init__(*args, **kwargs)
641 self.default_orderby = 'updated' 641 self.default_orderby = '-updated'
642 self.title = 'All projects' 642 self.title = 'All projects'
643 self.static_context_extra['Build'] = Build 643 self.static_context_extra['Build'] = Build
644 644