X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=blobdiff_plain;f=portal%2Fviews.py;h=60f161377c0a4357916dcff582f77e40042365b2;hp=2029e70bbe25c7c9c65f4afe54b2fe9d62a96eff;hb=31540dd504798e0aca69e10d8144fbedc5b16af8;hpb=937653fd70bbf7d95bcf870e7f2b46b4a8fec486 diff --git a/portal/views.py b/portal/views.py index 2029e70b..60f16137 100644 --- a/portal/views.py +++ b/portal/views.py @@ -30,8 +30,10 @@ from django.template.loader import render_to_string from myslice.viewutils import topmenu_items, the_user -from plugins.pres_view import PresView from portal.event import Event +# presview is put in observation for now +#from plugins.pres_view import PresView +from plugins.raw import Raw # these seem totally unused for now #from portal.util import RegistrationView, ActivationView @@ -54,7 +56,8 @@ class PresViewView(TemplateView): page = Page(self.request) - pres_view = PresView(page = page) +# pres_view = PresView(page = page) + pres_view = Raw(page = page,html="

PresView needs to be integrated

") context = super(PresViewView, self).get_context_data(**kwargs)