X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformview.py;h=b0fc3ec712415006c46afadc8d4c686b8eec90bb;hb=36a36913413d24a5c8683ccc6694b6f518d73118;hp=1b80349b01b18415594910d93d90e2b8922f7c6b;hpb=ecf7dd5d099c5b94952b6795b748380e2284bc14;p=unfold.git diff --git a/portal/platformview.py b/portal/platformview.py index 1b80349b..b0fc3ec7 100644 --- a/portal/platformview.py +++ b/portal/platformview.py @@ -15,9 +15,10 @@ from ui.topmenu import topmenu_items_live, the_user from plugins.querytable import QueryTable 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