Source code for management.views
"""Package that contains all Django Views of the management App."""
from __future__ import annotations
from django.views.generic.base import RedirectView
[docs]
class IndexView(RedirectView):
"""Index view."""
[docs]
pattern_name = 'management:settings'