core: migrate shell to core, remove navbar

This commit is contained in:
Jens Langhammer
2020-11-22 13:13:19 +01:00
parent ef2b8cf802
commit 30bf4f5747
6 changed files with 15 additions and 65 deletions

View File

@ -0,0 +1,8 @@
"""core shell view"""
from django.views.generic.base import TemplateView
class ShellView(TemplateView):
"""core shell view"""
template_name = "shell.html"