本文整理汇总了Python中zkpylons.model.time_slot.TimeSlot.find_by_id方法的典型用法代码示例。如果您正苦于以下问题:Python TimeSlot.find_by_id方法的具体用法?Python TimeSlot.find_by_id怎么用?Python TimeSlot.find_by_id使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类zkpylons.model.time_slot.TimeSlot
的用法示例。
在下文中一共展示了TimeSlot.find_by_id方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _delete
# 需要导入模块: from zkpylons.model.time_slot import TimeSlot [as 别名]
# 或者: from zkpylons.model.time_slot.TimeSlot import find_by_id [as 别名]
def _delete(self, id):
c.time_slot = TimeSlot.find_by_id(id)
meta.Session.delete(c.time_slot)
meta.Session.commit()
h.flash("Time Slot has been deleted.")
redirect_to('index')
示例2: delete
# 需要导入模块: from zkpylons.model.time_slot import TimeSlot [as 别名]
# 或者: from zkpylons.model.time_slot.TimeSlot import find_by_id [as 别名]
def delete(self, id):
"""Delete the time_slot
GET will return a form asking for approval.
POST requests will delete the item.
"""
c.time_slot = TimeSlot.find_by_id(id)
return render('/time_slot/confirm_delete.mako')
示例3: edit
# 需要导入模块: from zkpylons.model.time_slot import TimeSlot [as 别名]
# 或者: from zkpylons.model.time_slot.TimeSlot import find_by_id [as 别名]
def edit(self, id):
c.time_slot = TimeSlot.find_by_id(id)
defaults = h.object_to_defaults(c.time_slot, 'time_slot')
defaults['time_slot.start_date'] = c.time_slot.start_time.strftime('%d/%m/%y')
defaults['time_slot.start_time'] = c.time_slot.start_time.strftime('%H:%M:%S')
defaults['time_slot.end_date'] = c.time_slot.end_time.strftime('%d/%m/%y')
defaults['time_slot.end_time'] = c.time_slot.end_time.strftime('%H:%M:%S')
form = render('/time_slot/edit.mako')
return htmlfill.render(form, defaults)
示例4: _edit
# 需要导入模块: from zkpylons.model.time_slot import TimeSlot [as 别名]
# 或者: from zkpylons.model.time_slot.TimeSlot import find_by_id [as 别名]
def _edit(self, id):
time_slot = TimeSlot.find_by_id(id)
for key in self.form_result['time_slot']:
setattr(time_slot, key, self.form_result['time_slot'][key])
results = self.form_result['time_slot']
time_slot.start_time=datetime.combine(results['start_date'], results['start_time'])
time_slot.end_time=datetime.combine(results['end_date'], results['end_time'])
# update the objects with the validated form data
meta.Session.commit()
h.flash("The Time Slot has been updated successfully.")
redirect_to(action='index', id=None)
示例5: view
# 需要导入模块: from zkpylons.model.time_slot import TimeSlot [as 别名]
# 或者: from zkpylons.model.time_slot.TimeSlot import find_by_id [as 别名]
def view(self, id):
c.time_slot = TimeSlot.find_by_id(id)
return render('/time_slot/view.mako')