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