Exemplo n.º 1
0
def index():
    channels = Channel.query.order_by('featured').order_by('updated_at').limit(3).all()
    playlists = Playlist.get_featured(3)
    return render_template('index.html', channels=channels, playlists=playlists)
Exemplo n.º 2
0
def index():
    playlists = Playlist.get_featured(10)
    return render_template('index.html', playlists=playlists)