X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformsview.py;h=c31cd174510dc8f5ed0ce0b53aca978e2c5d98ec;hb=deee82377a1f72626cede01fdfec5e9d7cc274ce;hp=8c7640b46b93b7075e1525226c5d366b83301fcc;hpb=ebc470518c285f5fe5229f6be1d2db9b92197b1b;p=myslice.git diff --git a/portal/platformsview.py b/portal/platformsview.py index 8c7640b4..c31cd174 100644 --- a/portal/platformsview.py +++ b/portal/platformsview.py @@ -5,9 +5,10 @@ from unfold.loginrequired import FreeAccessView from ui.topmenu import topmenu_items_live, the_user from plugins.querytable import QueryTable +from myslice.theme import ThemeView # View for platforms -class PlatformsView(FreeAccessView): +class PlatformsView(FreeAccessView, ThemeView): template_name = "platforms.html" def get_context_data(self, **kwargs): @@ -45,7 +46,7 @@ class PlatformsView(FreeAccessView): context['topmenu_items'] = topmenu_items_live('Platforms', page) # so we can sho who is logged context['username'] = the_user(self.request) - + context['theme'] = self.theme context.update(page.prelude_env()) context['layout_1_or_2']="layout-unfold2.html" if not context['username'] else "layout-unfold1.html"