static: add admin shell to improve admin experience

This commit is contained in:
Jens Langhammer
2020-11-20 22:46:05 +01:00
parent 592f2cc558
commit 582dfface9
11 changed files with 249 additions and 188 deletions

View File

@ -21,10 +21,12 @@ from passbook.admin.views import (
tasks,
tokens,
users,
shell,
)
urlpatterns = [
path("", overview.AdministrationOverviewView.as_view(), name="overview"),
path("", shell.ShellView.as_view(), name="shell"),
path("overview/", overview.AdministrationOverviewView.as_view(), name="overview"),
# Applications
path(
"applications/", applications.ApplicationListView.as_view(), name="applications"