X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformview.py;h=b0fc3ec712415006c46afadc8d4c686b8eec90bb;hb=refs%2Fheads%2Ffibre;hp=6f537d0c129f3db4b170531af492764d52fb336a;hpb=ebc470518c285f5fe5229f6be1d2db9b92197b1b;p=unfold.git diff --git a/portal/platformview.py b/portal/platformview.py index 6f537d0c..b0fc3ec7 100644 --- a/portal/platformview.py +++ b/portal/platformview.py @@ -14,10 +14,11 @@ from ui.topmenu import topmenu_items_live, the_user from plugins.querytable import QueryTable -from myslice.config import Config +from myslice.configengine import ConfigEngine +from myslice.theme import ThemeView # View for 1 platform and its details -class PlatformView(FreeAccessView): +class PlatformView(FreeAccessView, ThemeView): template_name = "platform.html" def get_context_data(self, **kwargs): @@ -82,7 +83,7 @@ class PlatformView(FreeAccessView): query = query_resource_default_fields, query_all = query_resource_all, # this key is the one issued by google - googlemap_api_key = Config().googlemap_api_key(), + googlemap_api_key = ConfigEngine().googlemap_api_key(), # the key to use at init-time init_key = main_query_init_key, checkboxes = False, @@ -140,7 +141,7 @@ class PlatformView(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()) return context