force_text(), ugettext_lazy(), ungettext_lazy(), urlquote_plus() and is_ajax() are removed in 4.0. https: //docs.djangoproject.com/en/4.0/releases/4.0/ Co-Authored-By: manchandavishal <manchandavishal143@gmail.com> Change-Id: I9e43926cc3011b8b7321bbec59bebe915502eb4a
9 lines
357 B
Python
9 lines
357 B
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
# The name of the panel group to be added to HORIZON_CONFIG. Required.
|
|
PANEL_GROUP = 'app-catalog_manage_group'
|
|
# The display name of the PANEL_GROUP. Required.
|
|
PANEL_GROUP_NAME = _('Manage')
|
|
# The name of the dashboard the PANEL_GROUP associated with. Required.
|
|
PANEL_GROUP_DASHBOARD = 'app-catalog'
|