mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
293c0b604d
* Add SVG icons for map pins * Add federation basis and new coordinator form (#793) * Add new coordinator entry issue form * Add Federation basis * Fix eslint errors from F2F and fix languages * Redo eslint @typescript-eslint/strict-boolean-expressions * Robot Page working * Contexts Working * Garage Working * CurrentOrder working * Federation model working --------- Co-authored-by: Reckless_Satoshi <reckless.satoshi@protonmail.com> Co-authored-by: Reckless_Satoshi <90936742+Reckless-Satoshi@users.noreply.github.com>
16 lines
371 B
Python
16 lines
371 B
Python
from django.urls import path
|
|
|
|
from .views import basic, pro
|
|
|
|
urlpatterns = [
|
|
path("", basic, name="basic"),
|
|
path("create/", basic),
|
|
path("robot/", basic),
|
|
path("robot/<token>", basic),
|
|
path("offers/", basic),
|
|
path("order/<shortAlias>/<int:orderId>/", basic),
|
|
path("settings/", basic),
|
|
path("", basic),
|
|
path("pro/", pro, name="pro"),
|
|
]
|