robosats/frontend/urls.py

11 lines
220 B
Python
Raw Normal View History

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