1 from django
.conf
.urls
import url
10 name
='lists-overview'),
12 url(r
'^share/lists/create$',
16 url(r
'^user/(?P<username>[\w.+-]+)/lists/$',
20 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)$',
24 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)\.opml$',
28 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/search$',
32 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/add/'
33 '(?P<podcast_id>\w+)$',
35 name
='list-add-podcast'),
37 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/remove/'
40 name
='list-remove-podcast'),
42 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/delete$',
46 url(r
'^user/(?P<username>[\w.+-]+)/list/(?P<slug>[\w-]+)/rate$',