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