Mercurial > libervia-web
comparison 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 |
comparison
equal
deleted
inserted
replaced
1516:a3ca1bab6eb1 | 1517:b8ed9726525b |
---|---|
1 #!/usr/bin/env python3 | |
2 | |
3 | |
4 from sat.core.i18n import _ | |
5 from sat.core.log import getLogger | |
6 from sat.tools.common import data_format | |
7 from twisted.internet import defer | |
8 import datetime | |
9 import time | |
10 from dateutil import tz | |
11 | |
12 from libervia.server.constants import Const as C | |
13 | |
14 log = getLogger(__name__) | |
15 | |
16 | |
17 name = "calls" | |
18 access = C.PAGES_ACCESS_PROFILE | |
19 template = "call/call.html" |