008769587b
- Overview displays charts/reports (Currently only placeholders) - Configurations allows to define new backup configurations and link them to instances - Backups shows a list of all succesful backups and allows to restore them - Restores shows a history of all restored backups It communicates with the api server via the client apis (freeezer.client.client). The "glue code" between client apis and the UI lives in freezer.api.api. Implements: Blueprint freezer-api-web-ui Change-Id: I48cd8cba2b0169c6e64f650233c1a31b91ced34f
17 lines
448 B
Python
17 lines
448 B
Python
# The name of the dashboard to be added to HORIZON['dashboards']. Required.
|
|
DASHBOARD = 'freezer_ui'
|
|
|
|
# If set to True, this dashboard will not be added to the settings.
|
|
DISABLED = False
|
|
|
|
# Until there is a more elegant SYSPATH var scheme...
|
|
import sys
|
|
sys.path.append('/opt/stack/freezer')
|
|
|
|
# A list of applications to be added to INSTALLED_APPS.
|
|
ADD_INSTALLED_APPS = [
|
|
'horizon_web_ui.freezer_ui',
|
|
]
|
|
|
|
ADD_JS_FILES = ['freezer/js/freezer.js']
|