atoti.config.branding module¶
- class atoti.config.branding.BrandingConfig(favicon=None, logo=None, title=None)¶
The UI elements to change in the app to replace the atoti branding with another one.
Note
This feature requires the
atoti-plus
plugin.Example
>>> config = { ... "branding": { ... "favicon": "favicon.ico", ... "logo": "../logo.svg", ... "title": "Analytic App", ... } ... }
- favicon: Optional[Union[str, pathlib.Path]] = None¶
The file path to a
.ico
image that will be used as the favicon.
- logo: Optional[Union[str, pathlib.Path]] = None¶
The file path to a 24px by 24px
.svg
image that will be displayed in the upper-left corner.