academon/core/views/admin.py

8 lines
197 B
Python
Raw Normal View History

2022-09-16 12:51:56 +00:00
from django.views.generic import ListView
from ..mixins.auth import SuperuserRequiredMixin
class AdminVesselsListView(TemplateView, SuperuserRequiredMixin):
template_name = "core/base.html"