使用 model 的 instance method 进行比赛状态的判断

This commit is contained in:
virusdefender
2015-08-24 03:36:17 +08:00
parent 1c37c4bfb6
commit 76b28f2da2
3 changed files with 24 additions and 7 deletions

View File

@@ -74,7 +74,7 @@ def check_user_contest_permission(func):
{"reason": "group_limited", "show_tab": False, "contest": contest})
# 比赛没有开始
if contest.start_time > now():
if contest.status == 1:
if request.is_ajax():
return error_response(u"比赛还没有开始")
else: