robosats/frontend/urls.py

13 lines
265 B
Python
Raw Normal View History

from django.urls import path
from .views import index
urlpatterns = [
2022-02-17 19:50:10 +00:00
path("", index),
path("info/", index),
path("login/", index),
path("make/", index),
path("book/", index),
path("order/<int:orderId>", index),
path("wait/", index),
]