URL config

URL patterns of the thredds-control-center to be included via:

from django.urls import include, path

urlpatters = [
    path(
        "thredds-control-center",
        include("tds_control.urls"),
    ),
]

Data:

app_name

App name for the thredds-control-center to be used in calls to django.urls.reverse()

urlpatterns

urlpatterns for thredds-control-center

tds_control.urls.app_name = 'tds_control'

App name for the thredds-control-center to be used in calls to django.urls.reverse()

tds_control.urls.urlpatterns: list[Any] = [<URLPattern '^media/(?P<path>.*)$'>, <URLPattern '^static/(?P<path>.*)$'>]

urlpatterns for thredds-control-center