Config
info
{{ button(
icon="save",
id="save-config-btn",
float="left",
class="ml-0 mt-1 mb-1",
data={'url': url_for('settings_system.save_config')},
text="save"
) }}
Settings Example
[Settings]
theme = dark
accent = orange
accent = static/images/backgrounds/background.png
Variable |
Value |
[Settings] |
config section name. required. |
theme |
UI theme, options are light, dark |
accent |
UI accent, options are orange, green, blue, green, pink, grey |
background |
Background image. can be either a local link (prefixed by /static/images/backgrounds/) or an external link. Can also be set to random. If not set defaults to blank. |
App Example
[App Name]
prefix = https://
url = your-website.com
icon = static/images/apps/default.png
sidebar_icon = static/images/apps/default.png
description = Example description
open_in = iframe
Variable |
Value |
[App Name] |
The name of your app. |
prefix |
the prefix for the app's url, e.g. http:// or https:// |
url |
the url for your app, e.g. google.com |
icon |
icon for the dashboard, can be either a local link (prefixed by /static/images/apps/), or an external link |
sidebar_icon |
icon for the sidebar, can be either a local link (prefixed by /static/images/apps/), or an external link |
description |
a short description for the app |
open_in |
open the app in the current tab, an iframe or a new tab, options are iframe, new_tab, or this_tab |