Ejemplo n.º 1
0
Archivo: home.py Proyecto: BigLeg/leggy
def index():
    hottest = Video.hottest()
    newest = Video.newuploaded()
    return render_template('index.html',
                            hottestvideos = hottest,
                            newestvideos = newest)