blob: 452cc92b2c3e78826acc167d0d1ad3488f278a0e (
plain)
1
2
3
4
5
6
7
|
from django.conf.urls.defaults import patterns, url
from resourceexample.views import ExampleView, AnotherExampleView
urlpatterns = patterns('',
url(r'^$', ExampleView.as_view(), name='example'),
url(r'^(?P<num>[0-9]+)/$', AnotherExampleView.as_view(), name='another-example'),
)
|