from django.urls import include, path from . import views urlpatterns=[ path('',views.look,name='look'), path('new',views.submit,name='new'), ]