Mercurial > libervia-web
view libervia/pages/login/logged/page_meta.py @ 1155:813d54af8c0c
server (tasks): tasks can now be automatically ran when something happen in a watched dir:
A task can specify directories to watch in "WATCH_DIRS" list of path.
In dev_mode, when a file is created of modified in a watched dir, the task is run again.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 22 Feb 2019 18:50:33 +0100 |
parents | 29eb15062416 |
children | b2d067339de3 |
line wrap: on
line source
#!/usr/bin/env python2.7 # -*- coding: utf-8 -*- from libervia.server import session_iface from sat.core.log import getLogger log = getLogger(__name__) """SàT log-in page, with link to create an account""" template = u"login/logged.html" def prepare_render(self, request): template_data = request.template_data session_data = self.host.getSessionData(request, session_iface.ISATSession) template_data["guest_session"] = session_data.guest template_data["session_started"] = session_data.started