mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
- Using cockpit-pcp in ‘System’ section. Signed-off-by: fred1m <frederic.le-meur@ac-versailles.fr> [sunil: Minor grammar fix in description, minor styling] [sunil: Drop the icon completely in favor of just the font icon] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
16 lines
345 B
Python
16 lines
345 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
"""
|
||
FreedomBox app for System Monitoring (cockpit-pcp) in ‘System’.
|
||
"""
|
||
|
||
from django.utils.translation import ugettext_lazy as _
|
||
from plinth.clients import validate
|
||
|
||
clients = validate([{
|
||
'name': _('Cockpit'),
|
||
'platforms': [{
|
||
'type': 'web',
|
||
'url': '/_cockpit/'
|
||
}]
|
||
}])
|