X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/cf1c5c7118e320bdd5b9fa6dcef8585ba117ebb6..5715ba5816c2773949689461f715a08caa8c5d11:/src/archive/urls.py diff --git a/src/archive/urls.py b/src/archive/urls.py index da1873c..826c0c3 100644 --- a/src/archive/urls.py +++ b/src/archive/urls.py @@ -4,16 +4,13 @@ from django.views.generic import RedirectView from . import views urlpatterns = [ - url(r'^$', RedirectView.as_view(url='new/')), - + path("", views.AudiobookList.as_view(), name="list_managed"), url(r'^new/$', views.list_new, name="list_new"), url(r'^new/(.+)/$', views.file_new, name="file_new"), url(r'^move_to_archive/(.+)/$', views.move_to_archive, name="move_to_archive"), - - url(r'^unpublished/$', views.list_unpublished, name="list_unpublished"), url(r'^publishing/$', views.list_publishing, name="list_publishing"), - url(r'^published/$', views.list_published, name="list_published"), path('book//', views.BookView.as_view(), name="book"), + path('book-youtube-volume//', views.book_youtube_volume, name="book_youtube_volume"), url(r'^file/(\d+)/$', views.file_managed, name="file"), url(r'^publish/(\d+)/$', views.publish, name="publish"), url(r'^convert/(\d+)/$', views.publish, {'publish': False}, name="convert"), @@ -21,7 +18,6 @@ urlpatterns = [ url(r'^download/(\d+)\.(mp3|ogg|mkv)$', views.download, name="download"), url(r'^cancel/(\d+)/$', views.cancel_publishing, name="cancel_publishing"), url(r'^remove_to_archive/(\d+)/$', views.remove_to_archive, name="remove_to_archive"), - url(r'^unmanaged/$', views.list_unmanaged, name="list_unmanaged"), url(r'^unmanaged/(.+)/$', views.file_unmanaged, name="file_unmanaged"), url(r'^move_to_new/(.+)/$', views.move_to_new, name="move_to_new"),