added theme
[myslice.git] / portal / platformview.py
index a39fce9..d70c99b 100644 (file)
@@ -15,9 +15,10 @@ from ui.topmenu                  import topmenu_items_live, the_user
 from plugins.querytable          import QueryTable
 
 from myslice.configengine        import ConfigEngine
+from 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):
@@ -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