Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
442 B

  1. from django.urls import path, include
  2. from .views import *
  3. app_name = 'login'
  4. urlpatterns = [
  5. path('', index, name='index'),
  6. path('spotify_login', spotify_login, name='spotify_login'),
  7. path('callback', callback, name='callback'),
  8. # path('user/<str:user_secret>', user_home, name='user_home'),
  9. path('admin_graphs', admin_graphs, name='admin_graphs'),
  10. path('upload_history', upload_history, name='upload_history'),
  11. ]