robosats/frontend/urls.py

12 lines
248 B
Python
Raw Normal View History

from django.urls import path
2022-10-20 13:12:42 +00:00
from .views import basic, pro
urlpatterns = [
2022-10-20 13:12:42 +00:00
path("make/", basic),
path("book/", basic),
path("order/<int:orderId>", basic),
path("", basic),
path("ref/<refCode>", basic),
path("pro/", pro),
2022-02-17 19:50:10 +00:00
]