from django.contrib import admin from django.urls import include,path from django.conf.urls.static import static from django.conf import settings from lliga.views import profile urlpatterns = [ path('admin/', admin.site.urls), path('myapp/', include('myapp.urls')), path("accounts/", include("django.contrib.auth.urls")), path("accounts/profile/", profile, name="profile"), ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)