Mercurial > libervia-web
comparison libervia/pages/photos/album/page_meta.py @ 1145:29eb15062416
pages: set __name__ for imported pages
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 25 Jan 2019 08:41:43 +0100 |
parents | 28e3eb3bb217 |
children | b2d067339de3 |
comparison
equal
deleted
inserted
replaced
1144:2af117bfe6cc | 1145:29eb15062416 |
---|---|
2 # -*- coding: utf-8 -*- | 2 # -*- coding: utf-8 -*- |
3 | 3 |
4 from libervia.server.constants import Const as C | 4 from libervia.server.constants import Const as C |
5 from sat.core.log import getLogger | 5 from sat.core.log import getLogger |
6 | 6 |
7 log = getLogger("pages/photo/album") | 7 log = getLogger(__name__) |
8 | 8 |
9 name = u"photos_album" | 9 name = u"photos_album" |
10 access = C.PAGES_ACCESS_PROFILE | 10 access = C.PAGES_ACCESS_PROFILE |
11 template = u"photo/album.html" | 11 template = u"photo/album.html" |
12 | 12 |