from django.urls import path, include from .views import * app_name = 'graphs' urlpatterns = [ path('artists/', display_artist_graph, name='display_artist_graph'), path('genre/', display_genre_graph, name='display_genre_graph'), path('audio_features/', display_features_graphs, name='display_audio_features'), path('history/', HistoryList.as_view(), name='display_history_table'), ]