9 lines
320 B
Python
9 lines
320 B
Python
from django.views.generic import TemplateView
|
|
|
|
from user_roles.mixins import OwnerRequiredMixin
|
|
|
|
|
|
class SystemSettingsView(OwnerRequiredMixin, TemplateView):
|
|
"""Главная страница настроек (доступна только владельцу)"""
|
|
template_name = "system_settings/settings.html"
|