Benedek Nagy 209da888cd
power: Add a link to power app in the system menu
Closes: #1817.

[sunil: Run isort and yapf]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2022-01-27 13:48:51 -08:00

43 lines
1.2 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
FreedomBox app for power controls.
"""
from django.utils.translation import gettext_lazy as _
from plinth import app as app_module
from plinth import menu
from plinth.modules.backups.components import BackupRestore
from . import manifest
_description = [_('Restart or shut down the system.')]
app = None
class PowerApp(app_module.App):
"""FreedomBox app for power controls."""
app_id = 'power'
_version = 1
def __init__(self):
"""Create components for the app."""
super().__init__()
info = app_module.Info(app_id=self.app_id, version=self._version,
is_essential=True, name=_('Power'),
icon='fa-power-off', description=_description,
manual_page='Power')
self.add(info)
menu_item = menu.Menu('menu-power', info.name, None, info.icon,
'power:index', parent_url_name='system')
self.add(menu_item)
backup_restore = BackupRestore('backup-restore-power',
**manifest.backup)
self.add(backup_restore)