source: music/urls.py@ 4abe330

Last change on this file since 4abe330 was 611686e, checked in by ManuelTrajcev <manueltrajcev7@…>, 2 weeks ago

Querry - Invoice Created by Customer after a given date

  • Property mode set to 100644
File size: 1.1 KB
Line 
1from django.urls import path
2from . import views
3
4urlpatterns = [
5 path('album/', views.album_list, name='album_list'),
6 path('artist/', views.artist_list, name='artist_list'),
7 path('artist/avg-track-duration', views.avg_track_duration, name='avg_track_duration'),
8 path('artist/avg-track-price', views.avg_price_per_artist, name='avg_track_price'),
9 path('artist/most-popular', views.rank_list_artists, name='rank_list_artists'),
10 path('track/', views.track_list, name='track_list'),
11 path('customer/genres-per-customer', views.genres_per_customer, name='genres_per_customer'),
12 path('customer/invoices-per-customer', views.invoice_per_customer_after_date, name='invoice_per_customer_after_date'),
13 path('customer/most-popular-genre-per-customer', views.most_listened_genre_per_customer, name='most_listened_genre_per_customer'),
14 path('media-type/percentage', views.media_type_percentage, name='media_type_percentage'),
15 path('track/per-genre', views.tracks_count_per_genre, name='track_count_per_genre'),
16 path('customer/rank-list', views.rank_list_most_active_customers, name='rank_list_most_active_customers'),
17]
Note: See TracBrowser for help on using the repository browser.