本文整理匯總了Python中jobs.models.Job.get_by_id方法的典型用法代碼示例。如果您正苦於以下問題:Python Job.get_by_id方法的具體用法?Python Job.get_by_id怎麽用?Python Job.get_by_id使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類jobs.models.Job
的用法示例。
在下文中一共展示了Job.get_by_id方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _get_job_or_404
# 需要導入模塊: from jobs.models import Job [as 別名]
# 或者: from jobs.models.Job import get_by_id [as 別名]
def _get_job_or_404(job_id):
job = Job.get_by_id(int(job_id))
current_user = users.get_current_user() # only job owner or admin can edit, check or delete the job
if job and job.owned_by(current_user, users.is_current_user_admin()):
return job
else:
raise Http404
示例2: show
# 需要導入模塊: from jobs.models import Job [as 別名]
# 或者: from jobs.models.Job import get_by_id [as 別名]
def show(request, job_id):
job = Job.get_by_id(int(job_id))
if not job:
raise Http404
if not job.is_published: # only job owner or admin can view unpublished jobs
if not job.owned_by(users.get_current_user(), users.is_current_user_admin()):
raise Http404
return _custom_render_to_response('show_job.html', {'job': job, 'title': job.title})