mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 19:23:27 +00:00
9 lines
257 B
Python
9 lines
257 B
Python
|
from django.conf.urls import include, url
|
||
|
|
||
|
from stock.views import *
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^(?P<counter_id>[0-9]+)$', StockListView.as_view(), name='stock_list'),
|
||
|
url(r'^(?P<counter_id>[0-9]+)/new$', StockCreateView.as_view(), name='stock_new'),
|
||
|
]
|