comparison libervia/web/pages/calls/page_meta.py @ 1597:c1c1d68d063e

pages (lists): uses std lib `json` and don't use anymore `DOMNODE`: those tricks are not needed anymore with recent versions of Brython.
author Goffi <goffi@goffi.org>
date Sun, 11 Feb 2024 21:32:53 +0100
parents eb00d593801d
children
comparison
equal deleted inserted replaced
1596:52098b5bab8d 1597:c1c1d68d063e
1 #!/usr/bin/env python3 1 #!/usr/bin/env python3
2
3
4 from libervia.backend.core.i18n import _
5 from libervia.backend.core.log import getLogger
6 from libervia.backend.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.web.server.constants import Const as C 2 from libervia.web.server.constants import Const as C
13
14 log = getLogger(__name__)
15 3
16 4
17 name = "calls" 5 name = "calls"
18 access = C.PAGES_ACCESS_PROFILE 6 access = C.PAGES_ACCESS_PROFILE
19 template = "call/call.html" 7 template = "call/call.html"