You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
585 B
11 lines
585 B
from django.conf.urls import patterns, url
|
|
from views import UserView, UserExpositionsView, UserConferenceView
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^(?P<url>.*)/expositions/(?P<page>\d+)/$', UserExpositionsView.as_view(), {'meta_id': 72}),
|
|
url(r'^(?P<url>.*)/expositions/$', UserExpositionsView.as_view(), {'meta_id': 72}),
|
|
url(r'^(?P<url>.*)/conferences/(?P<page>\d+)/$', UserConferenceView.as_view(), {'meta_id': 73}),
|
|
url(r'^(?P<url>.*)/conferences/$', UserConferenceView.as_view(), {'meta_id': 73}),
|
|
url(r'^(?P<url>.*)/$', UserView.as_view(), {'meta_id': 71}),
|
|
)
|
|
|
|
|