from django.urls import path from . import views app_name = "maintenance" urlpatterns = [ path('', views.info, name="info"), ]