15 строки
456 B
Python
15 строки
456 B
Python
from django.conf.urls.defaults import url
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = (
|
|
url('^incoming/?$', views.incoming, name='compat.incoming'),
|
|
url('^reporter/?$', views.reporter, name='compat.reporter'),
|
|
url('^reporter/([^/]+)$',
|
|
views.reporter_detail, name='compat.reporter_detail'),
|
|
|
|
url('^(?P<version>[.\w]+)?$', views.index, name='compat.index'),
|
|
url('^(?P<version>[.\w]+)/details$', views.details, name='compat.details'),
|
|
)
|