mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-13 05:19:26 +00:00
11 lines
227 B
Python
11 lines
227 B
Python
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'),
|
|
]
|
|
|
|
|