当前位置: 首页>>代码示例>>Python>>正文


Python Event.query_in_deployment方法代码示例

本文整理汇总了Python中app.models.Event.query_in_deployment方法的典型用法代码示例。如果您正苦于以下问题:Python Event.query_in_deployment方法的具体用法?Python Event.query_in_deployment怎么用?Python Event.query_in_deployment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app.models.Event的用法示例。


在下文中一共展示了Event.query_in_deployment方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: activity

# 需要导入模块: from app.models import Event [as 别名]
# 或者: from app.models.Event import query_in_deployment [as 别名]
def activity():
    """
    View for the activity feed of recent events.
    """

    events = Event.query_in_deployment().order_by(desc(Event.created_at)).limit(50).all()
    shared_message_form = SharedMessageForm()

    if request.method == "POST":
        if not current_user.is_authenticated():
            flash(gettext(u"You must log in to post a message."), "error")
        elif not current_user.display_in_search:
            flash(gettext(u"We need your name before you can post a message."), "error")
        elif shared_message_form.validate():
            data = shared_message_form.message.data
            msg = SharedMessageEvent.from_user(current_user, message=data)
            db.session.add(msg)
            db.session.commit()
            flash(gettext(u"Message posted!"))
            return redirect(url_for("views.activity"))

    return render_template(
        "activity.html",
        **{
            "user": current_user,
            "events": events,
            "most_complete_profiles": User.get_most_complete_profiles(limit=5),
            "most_connected_profiles": User.get_most_connected_profiles(limit=5),
        }
    )
开发者ID:batusayici,项目名称:noi2,代码行数:32,代码来源:views.py

示例2: get_latest_events

# 需要导入模块: from app.models import Event [as 别名]
# 或者: from app.models.Event import query_in_deployment [as 别名]
def get_latest_events(pageid=1):
    return Event.query_in_deployment().order_by(desc(Event.created_at)).\
           paginate(pageid)
开发者ID:tekd,项目名称:noi2,代码行数:5,代码来源:views.py


注:本文中的app.models.Event.query_in_deployment方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。