Exemplo n.º 1
0
def _index():
    songs = get_all_songs()
    current_song = get_playing_song()
    return render_template('index.html', songs=songs, current_song=current_song)
Exemplo n.º 2
0
def _songlister():
    songs = get_all_songs()
    current_song = get_playing_song()
    return render_template('songlister.html',
                           songs=songs,
                           current_song=current_song)
Exemplo n.º 3
0
def _songlister():
    songs = get_all_songs()
    current_song = get_playing_song()
    return render_template('songlister.html', songs=songs, current_song=current_song)
Exemplo n.º 4
0
def _index():
    songs = get_all_songs()
    current_song = get_playing_song()
    return render_template('index.html',
                           songs=songs,
                           current_song=current_song)