Sith/counter/urls.py

11 lines
227 B
Python
Raw Normal View History

2016-03-28 12:54:35 +00:00
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'),
]