Esempio n. 1
0
def getfullpost(post_id):
	post=Post.cached_get_by_id(post_id)
	if post:
		comments=Comment.cached_get_by_id(post_id)
		return render_template('page.html',post=post,comments=comments)
	else:
		abort(404)
Esempio n. 2
0
def getfullpost(post_id):
    post = Post.cached_get_by_id(post_id)
    if post:
        comments = Comment.cached_get_by_id(post_id)
        return render_template('page.html', post=post, comments=comments)
    else:
        abort(404)