1 2 3 4 5 6 7 8 9
from django.urls import path from . import views # Configure the URL patterns for username.* urlpatterns = [ # match for username.* path('', views.home, name='home'), ]