podjango: Shorten feeds links

This commit is contained in:
Ben Sturmfels 2024-02-07 14:25:45 +11:00
parent 97bf39bd6d
commit a790bce31a
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -51,8 +51,8 @@ urlpatterns = [
url(r'^(?P<year>\d{4})/$', YearArchiveView.as_view(**info_dict), name='year-archive'), url(r'^(?P<year>\d{4})/$', YearArchiveView.as_view(**info_dict), name='year-archive'),
url(r'^all/$', custom_index, dict(info_dict, paginate_by=20), name='cast'), url(r'^all/$', custom_index, dict(info_dict, paginate_by=20), name='cast'),
url(r'^query/$', query, name='query'), url(r'^query/$', query, name='query'),
url(r'^feeds/cast-ogg/$', OggCastFeed(), name='feed-ogg'), url(r'^feeds/ogg/$', OggCastFeed(), name='feed-ogg'),
url(r'^feeds/cast-mp3/$', Mp3CastFeed(), name='feed-mp3'), url(r'^feeds/mp3/$', Mp3CastFeed(), name='feed-mp3'),
url(r'^feeds/$', view, name='feeds'), url(r'^feeds/$', view, name='feeds'),
] ]