7 lines
192 B
Python
7 lines
192 B
Python
from django.views.generic import TemplateView
|
|
|
|
from ..mixins.auth import SuperuserRequiredMixin
|
|
|
|
|
|
class BaseDevView(TemplateView, SuperuserRequiredMixin):
|
|
template_name = "core/base.html"
|