mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +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>
14 lines
301 B
Python
14 lines
301 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
"""
|
||
FreedomBox app for System Monitoring (cockpit-pcp) in ‘System’.
|
||
"""
|
||
|
||
from django.conf.urls import url
|
||
|
||
from plinth.views import AppView
|
||
|
||
urlpatterns = [
|
||
url(r'^sys/performance/$', AppView.as_view(app_id='performance'),
|
||
name='index'),
|
||
]
|