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