9 lines
183 B
Python
9 lines
183 B
Python
"""admin shell view"""
|
|
from django.views.generic.base import TemplateView
|
|
|
|
|
|
class ShellView(TemplateView):
|
|
"""admin shell view"""
|
|
|
|
template_name = "administration/shell.html"
|