robosats/frontend/urls.py
2022-01-07 18:48:23 -05:00

13 lines
298 B
Python

from django.urls import path
from .views import index
urlpatterns = [
path('', index),
path('home/', index),
path('login/', index),
path('make/', index),
path('book/', index),
path('order/<int:orderId>', index),
path('wait/', index),
path('currencies/',index)
]