1 from django
.conf
.urls
import url
8 name
='lists-overview'),
10 url(r
'^share/lists/create$',
14 url(r
'^user/(?P<username>[\w.+-]+)/lists/$',
18 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)$',
22 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)\.opml$',
26 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/search$',
30 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/add/(?P<podcast_id>\w+)$',
32 name
='list-add-podcast'),
34 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/remove/(?P<order>\d+)$',
36 name
='list-remove-podcast'),
38 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/delete$',
42 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/rate$',