from django.contrib import admin from django.urls import path from user.views import t1 urlpatterns = [ path('',t1), ] print(urlpatterns)