mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-11 12:29:24 +00:00
Add basic counter model
This commit is contained in:
10
counter/urls.py
Normal file
10
counter/urls.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.conf.urls import url, include
|
||||
|
||||
from counter.views import *
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', CounterListView.as_view(), name='list'),
|
||||
url(r'^(?P<counter_id>[0-9]+)$', CounterDetail.as_view(), name='details'),
|
||||
]
|
||||
|
||||
|
Reference in New Issue
Block a user