3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-08-19 16:33:39 +00:00
coope/gestion/urls.py

16 lines
542 B
Python
Raw Normal View History

from django.urls import path
from . import views
app_name="gestion"
urlpatterns = [
path('manage', views.manage, name="manage"),
2018-10-05 22:03:02 +00:00
path('reload', views.reload, name="reload"),
path('refund', views.refund, name="refund"),
path('productsIndex', views.productsIndex, name="productsIndex"),
path('addProduct', views.addProduct, name="addProduct"),
path('addKeg', views.addKeg, name="addKeg"),
path('addMenu', views.addMenu, name="addMenu"),
path('getProduct/<str:barcode>', views.getProduct, name="getProduct"),
]