urls.py 718 B

12345678910111213
  1. from django.conf.urls import url
  2. from django.urls import path
  3. from . import views
  4. urlpatterns = [
  5. ### STUFF RELATED TO MANAGING A PLAYLIST
  6. path("", views.manage_playlists, name='manage_playlists'),
  7. path("save/<slug:what>", views.manage_save, name='manage_save'), # to help auto save the input texts found in the below pages
  8. path("view/<slug:page>", views.manage_view_page, name='manage_view_page'), # views the import pl, create pl, create untube pl pages
  9. path("import", views.manage_import_playlists, name="manage_import_playlists"),
  10. path("create", views.manage_create_playlist, name="manage_create_playlist"),
  11. path("nuke", views.manage_nuke_playlists, name="manage_nuke_playlists"),
  12. ]