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