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


Python Location.find_all方法代码示例

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


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

示例1: new

# 需要导入模块: from zkpylons.model.location import Location [as 别名]
# 或者: from zkpylons.model.location.Location import find_all [as 别名]
    def new(self):
        c.time_slots = TimeSlot.find_all()
        c.locations = Location.find_all()
        c.events = Event.find_all()

        form = render('/schedule/new.mako')
        object = { 'schedule': self.form_result }
        defaults = NewScheduleSchema().from_python(object)
        return htmlfill.render(form, defaults)
开发者ID:SharifulAlamSourav,项目名称:zookeepr,代码行数:11,代码来源:schedule.py

示例2: edit

# 需要导入模块: from zkpylons.model.location import Location [as 别名]
# 或者: from zkpylons.model.location.Location import find_all [as 别名]
    def edit(self, id):
        c.time_slots = TimeSlot.find_all()
        c.locations = Location.find_all()
        c.events = Event.find_all()
        c.schedule = Schedule.find_by_id(id)


        defaults = h.object_to_defaults(c.schedule, 'schedule')
        defaults['schedule.time_slot'] = c.schedule.time_slot_id
        defaults['schedule.location'] = c.schedule.location_id
        defaults['schedule.event'] = c.schedule.event_id

        form = render('/schedule/edit.mako')
        return htmlfill.render(form, defaults)
开发者ID:Secko,项目名称:zookeepr,代码行数:16,代码来源:schedule.py

示例3: index

# 需要导入模块: from zkpylons.model.location import Location [as 别名]
# 或者: from zkpylons.model.location.Location import find_all [as 别名]
 def index(self):
     c.location_collection = Location.find_all()
     return render('/location/list.mako')
开发者ID:SharifulAlamSourav,项目名称:zookeepr,代码行数:5,代码来源:location.py


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