예제 #1
0
파일: home.py 프로젝트: BigLeg/leggy
def index():
    hottest = Video.hottest()
    newest = Video.newuploaded()
    return render_template('index.html',
                            hottestvideos = hottest,
                            newestvideos = newest)