def get_post_to_update(id): post = db_post(id) return render_template('update-post.html', post=post)
def get_post(id): post = db_post(id) return render_template('post.html', post=post)