Mercurial > libervia-web
diff libervia/pages/calls/page_meta.py @ 1517:b8ed9726525b
browser: "calls" implementation, first draft:
Basic page to make a call. Call are automatically accepted for the moment.
fix 422
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 01 Jun 2023 21:42:02 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libervia/pages/calls/page_meta.py Thu Jun 01 21:42:02 2023 +0200 @@ -0,0 +1,19 @@ +#!/usr/bin/env python3 + + +from sat.core.i18n import _ +from sat.core.log import getLogger +from sat.tools.common import data_format +from twisted.internet import defer +import datetime +import time +from dateutil import tz + +from libervia.server.constants import Const as C + +log = getLogger(__name__) + + +name = "calls" +access = C.PAGES_ACCESS_PROFILE +template = "call/call.html"