Mercurial > libervia-web
view libervia/pages/login/logged/page_meta.py @ 1143:7bd47d32da87
pages (tickets, merge-requests): convert body from/to markdown while editing/creating new ticket:
there is currently no way to edit XHTML directly inside the browser with Libervia pages, this patch works around this by doing a conversion to/from markdown.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 19 Jan 2019 11:42:37 +0100 |
parents | 28e3eb3bb217 |
children | 29eb15062416 |
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("pages/login") """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