Esempio n. 1
0
File: home.py Progetto: BigLeg/leggy
def index():
    hottest = Video.hottest()
    newest = Video.newuploaded()
    return render_template('index.html',
                            hottestvideos = hottest,
                            newestvideos = newest)