本文整理匯總了Python中models.WorkshopGame.get_for_now方法的典型用法代碼示例。如果您正苦於以下問題:Python WorkshopGame.get_for_now方法的具體用法?Python WorkshopGame.get_for_now怎麽用?Python WorkshopGame.get_for_now使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.WorkshopGame
的用法示例。
在下文中一共展示了WorkshopGame.get_for_now方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: play
# 需要導入模塊: from models import WorkshopGame [as 別名]
# 或者: from models.WorkshopGame import get_for_now [as 別名]
def play(request):
"""
Play current workshop or show expired message.
"""
workshop = WorkshopGame.get_for_now()
player = request.user.get_profile()
error = ''
if not workshop:
return do_error(request, _('No current workshop'))
elif player not in workshop.semigroup.players.all():
return do_error(request, _('You are not in the current semigroup'))
elif not workshop.is_active():
return do_error(request, _('Workshop is not active'))
assesment = Assesment.objects.get_or_create(player=player, workshop=workshop)[0]
if assesment.answered:
return do_error(request, _('You have already answered this workshop'))
if request.method == 'POST':
answers = {}
for q in workshop.questions.all():
answers[q.id] = request.POST.get('answer_%d' % q.id)
assesment.set_answered(answers)
return redirect('workshop_index_view')
return render_to_response('workshop/play.html',
{'assesment': assesment,
'workshop': workshop},
context_instance=RequestContext(request)
)
示例2: index
# 需要導入模塊: from models import WorkshopGame [as 別名]
# 或者: from models.WorkshopGame import get_for_now [as 別名]
def index(request, extra_context=None):
player = request.user.get_profile()
assesment = Assesment.get_for_player_and_workshop(request.user.get_profile(), WorkshopGame.get_for_now())
if not extra_context:
extra_context = {}
extra_context.update({'workshopgame': WorkshopGame, 'workshop': WorkshopGame.get_for_player_now(player),
'assesment': assesment})
return render_to_response('workshop/index.html',
extra_context,
context_instance=RequestContext(request)
)