Beispiel #1
0
def top_music():
    """Route to Get the list of Top Music for a user according to the email , return top.html page"""
    email = session['email']
    list = DbFunct.song_songs_get_top_global()
    return render_template('top.html', list_music=list, username=session['username'])