Advertisement
NikolayGorshenin

Untitled

Apr 14th, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. from django.urls import path, include
  2.  
  3. from . import views
  4.  
  5. urlpatterns = [
  6. path("", views.index, name="index"),
  7. path("thank-you/", views.index, name="thankyou"),
  8. ]
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement