robosats/frontend/urls.py

12 lines
264 B
Python
Raw Normal View History

from django.urls import path
from .views import index
urlpatterns = [
path('', index),
2022-01-13 00:22:16 +03:00
path('info/', index),
path('login/', index),
path('make/', index),
path('book/', index),
path('order/<int:orderId>', index),
path('wait/', index),
]