本文整理汇总了Python中flaskbb.forum.forms.ReplyForm.save方法的典型用法代码示例。如果您正苦于以下问题:Python ReplyForm.save方法的具体用法?Python ReplyForm.save怎么用?Python ReplyForm.save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flaskbb.forum.forms.ReplyForm
的用法示例。
在下文中一共展示了ReplyForm.save方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: reply_post
# 需要导入模块: from flaskbb.forum.forms import ReplyForm [as 别名]
# 或者: from flaskbb.forum.forms.ReplyForm import save [as 别名]
def reply_post(topic_id, post_id):
topic = Topic.query.filter_by(id=topic_id).first_or_404()
post = Post.query.filter_by(id=post_id).first_or_404()
if post.topic.forum.locked:
flash("This forum is locked; you cannot submit new topics or posts.",
"danger")
return redirect(post.topic.forum.url)
if post.topic.locked:
flash("The topic is locked.", "danger")
return redirect(post.topic.forum.url)
if not can_post_reply(user=current_user, forum=topic.forum):
flash("You do not have the permissions to post in this topic", "danger")
return redirect(topic.forum.url)
form = ReplyForm()
if form.validate_on_submit():
if request.form['button'] == 'preview':
return render_template("forum/new_post.html", topic=topic, form=form, preview=form.content.data)
else:
form.save(current_user, topic)
return redirect(post.topic.url)
else:
form.content.data = '[quote]{}[/quote]'.format(post.content)
return render_template("forum/new_post.html", topic=post.topic, form=form)
示例2: reply_post
# 需要导入模块: from flaskbb.forum.forms import ReplyForm [as 别名]
# 或者: from flaskbb.forum.forms.ReplyForm import save [as 别名]
def reply_post(topic_id, post_id):
topic = Topic.query.filter_by(id=topic_id).first_or_404()
post = Post.query.filter_by(id=post_id).first_or_404()
if not can_post_reply(user=current_user, topic=topic):
flash(_("You do not have the permissions to post in this topic."),
"danger")
return redirect(topic.forum.url)
form = ReplyForm()
if form.validate_on_submit():
if "preview" in request.form:
return render_template(
"forum/new_post.html", topic=topic,
form=form, preview=form.content.data
)
else:
form.save(current_user, topic)
return redirect(post.topic.url)
else:
form.content.data = format_quote(post)
return render_template("forum/new_post.html", topic=post.topic, form=form)
示例3: new_post
# 需要导入模块: from flaskbb.forum.forms import ReplyForm [as 别名]
# 或者: from flaskbb.forum.forms.ReplyForm import save [as 别名]
def new_post(topic_id, slug=None):
topic = Topic.query.filter_by(id=topic_id).first_or_404()
if not can_post_reply(user=current_user, topic=topic):
flash("You do not have the permissions to post here", "danger")
return redirect(topic.forum.url)
form = ReplyForm()
if form.validate_on_submit():
if request.form['button'] == 'preview':
return render_template("forum/new_post.html", topic=topic,
form=form, preview=form.content.data)
else:
post = form.save(current_user, topic)
return view_post(post.id)
return render_template("forum/new_post.html", topic=topic, form=form)
示例4: new_post
# 需要导入模块: from flaskbb.forum.forms import ReplyForm [as 别名]
# 或者: from flaskbb.forum.forms.ReplyForm import save [as 别名]
def new_post(topic_id):
topic = Topic.query.filter_by(id=topic_id).first()
if topic.locked:
flash("The topic is locked.", "error")
return redirect(url_for("forum.view_forum", forum_id=topic.forum_id))
if not perm_post_reply(user=current_user, forum=topic.forum):
flash("You do not have the permissions to delete the topic", "error")
return redirect(url_for("forum.view_forum", forum_id=topic.forum_id))
form = ReplyForm()
if form.validate_on_submit():
post = form.save(current_user, topic)
return view_post(post.id)
return render_template("forum/new_post.html", topic=topic, form=form)
示例5: new_post
# 需要导入模块: from flaskbb.forum.forms import ReplyForm [as 别名]
# 或者: from flaskbb.forum.forms.ReplyForm import save [as 别名]
def new_post(topic_id, slug=None):
topic = Topic.query.filter_by(id=topic_id).first_or_404()
if not Permission(CanPostReply):
flash(_("You do not have the permissions to post in this topic."),
"danger")
return redirect(topic.forum.url)
form = ReplyForm()
if form.validate_on_submit():
if "preview" in request.form:
return render_template(
"forum/new_post.html", topic=topic,
form=form, preview=form.content.data
)
else:
post = form.save(current_user, topic)
return view_post(post.id)
return render_template("forum/new_post.html", topic=topic, form=form)
示例6: new_post
# 需要导入模块: from flaskbb.forum.forms import ReplyForm [as 别名]
# 或者: from flaskbb.forum.forms.ReplyForm import save [as 别名]
def new_post(topic_id, slug=None):
topic = Topic.query.filter_by(id=topic_id).first_or_404()
if topic.forum.locked:
flash("This forum is locked; you cannot submit new topics or posts.",
"danger")
return redirect(topic.forum.url)
if topic.locked:
flash("The topic is locked.", "danger")
return redirect(topic.forum.url)
if not can_post_reply(user=current_user, forum=topic.forum):
flash("You do not have the permissions to delete the topic", "danger")
return redirect(topic.forum.url)
form = ReplyForm()
if form.validate_on_submit():
post = form.save(current_user, topic)
return view_post(post.id)
return render_template("forum/new_post.html", topic=topic, form=form)