Beispiel #1
0
def artists_page(page):
    return page_view(page, Artist, "artists.html", "artists", top_artists=top_artists(10), title='Artists')
Beispiel #2
0
def albums_page(page):
    return page_view(page, Album, "albums.html", "albums", top_albums=top_albums(10), title='Albums')
Beispiel #3
0
def genres_page(page):
    return page_view(page, Genre, "genres.html", "genres", top_genres=top_genres(10), title='Genres')
Beispiel #4
0
def tracks_page(page):
    return page_view(page, Track, "tracks.html", "tracks", 20, title='Tracks')