Source code for management.views

"""Package that contains all Django Views of the management App."""

from __future__ import annotations

from django.utils.translation import gettext as _
from django.views.generic.base import RedirectView


[docs] class IndexView(RedirectView): """Index view"""
[docs] permanent = True
[docs] pattern_name = 'management:settings'