17 lines
528 B
Python
17 lines
528 B
Python
from django.urls import path
|
|
from backend.core import views as v
|
|
|
|
app_name = 'core'
|
|
|
|
|
|
urlpatterns = [
|
|
path('', v.index, name='index'),
|
|
path('signup/', v.signup, name='signup'),
|
|
path('thankyou/', v.thankyou, name='thankyou'),
|
|
# url document/ recieves a parameter named 'uuid' and passes it to the view
|
|
path('document/<uuid:document_id>/', v.document, name='document'),
|
|
path('preview/<str:name>/', v.template_preview, name='template_preview'),
|
|
path("payment/", v.payment_page, name="payment_page"),
|
|
|
|
]
|