예제 #1
0
def combined_reviews():
    pitchfork_reviews = PitchforkReviews.get_all_reviews()
    metacritic_reviews = MetacriticReviews.get_all_reviews()
    return render_template('combined reviews.html',
                           title='Combined reviews',
                           pitchfork=pitchfork_reviews,
                           metacritic=metacritic_reviews)
예제 #2
0
def combined_reviews():
    pitchfork_reviews = PitchforkReviews.get_all_reviews()
    metacritic_reviews = MetacriticReviews.get_all_reviews()
    return render_template('combined reviews.html',
                           title='Combined reviews',
                           pitchfork=pitchfork_reviews,
                           metacritic=metacritic_reviews)
예제 #3
0
def pitchfork():
    reviews = PitchforkReviews.get_all_reviews()
    return render_template('pitchfork.html',
                           title='Pitchfork reviews',
                           reviews=reviews)
예제 #4
0
def pitchfork():
    reviews = PitchforkReviews.get_all_reviews()
    return render_template('pitchfork.html',
                           title='Pitchfork reviews',
                           reviews=reviews)