Add system report for pretix Enterprise (#4213)

* Add system report for pretix Enterprise

* Update src/pretix/control/sysreport.py

Co-authored-by: Mira <weller@rami.io>

* ADd missing license header

---------

Co-authored-by: Mira <weller@rami.io>
This commit is contained in:
Raphael Michel
2024-06-13 17:08:36 +02:00
committed by GitHub
parent 3b48b0782d
commit e9a95b0b09
5 changed files with 374 additions and 1 deletions

View File

@@ -444,6 +444,11 @@ def get_global_navigation(request):
'url': reverse('control:global.license'),
'active': (url.url_name == 'global.license'),
},
{
'label': _('System report'),
'url': reverse('control:global.sysreport'),
'active': (url.url_name == 'global.sysreport'),
},
]
})