robosats/frontend/urls.py
2024-11-10 08:51:47 +00:00

16 lines
373 B
Python

from django.urls import path
from .views import basic, pro
urlpatterns = [
path("", basic, name="basic"),
path("create/", basic),
path("garage/", basic),
path("garage/<token>", basic),
path("offers/", basic),
path("order/<shortAlias>/<int:orderId>/", basic),
path("settings/", basic),
path("", basic),
path("pro/", pro, name="pro"),
]