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