Skip to content

Commit

Permalink
Update suspicious wording
Browse files Browse the repository at this point in the history
  • Loading branch information
taoky committed Oct 31, 2024
1 parent d3f5292 commit 4fbc843
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ Reverse for 'socialaccount_signup' not found. 'socialaccount_signup' is not a va

答:相应用户需要被勾选“工作人员状态”,这个选项和权限无关,仅影响界面显示。

问:“不计分”、“嫌疑组”和“已封禁”这三个组别有什么区别?
问:“不计分”、“待审核”和“已封禁”这三个组别有什么区别?

答:已封禁组不能看到题目,不能做题,不能打开首页。嫌疑组可做题,分数不计入排行榜
答:不计分组的分数不计入排行榜;待审核组可以正常参赛,但分数暂时不计入排行榜,在比赛期间及比赛结束后 24 小时内提交审核材料并通过后,分数会重新计入排行榜;已封禁组被禁止参赛,即不能看到题目,不能做题,不能打开首页。

问:加群验证码是什么?

Expand Down
2 changes: 1 addition & 1 deletion frontend/templates/admin_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h2 v-else>正在创建</h2>
<input class="vTextField" type="text" id="form-aff" name="aff" v-model="opened.aff">
</div>
<div class="form-row">
<label for="form-suspicious-reason">嫌疑原因(仅在用户在嫌疑组时显示):</label>
<label for="form-suspicious-reason">待审核原因(仅在用户在待审核组时显示):</label>
<input class="vTextField" type="text" id="form-suspicious-reason" name="suspicious-reason" v-model="opened.suspicious_reason">
</div>
</fieldset>
Expand Down
9 changes: 5 additions & 4 deletions frontend/templates/hub.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@
<a href="/announcements/">查看所有公告</a>
</div>
<div v-if="user.group==='suspicious'" class="msg-error">
经裁判组检查,你的账号{{ suspicious_words }},因此取消排名资格。你仍可继续完成题目。
如果你有异议,请尽快联系 <a href="mailto:[email protected]">[email protected]</a>
提供你的 Token 以及申诉理由。
经裁判组检查,你的账号{{ suspicious_words }}。
你的分数暂时不计入排行榜,你仍可继续完成题目。
你可以在比赛期间及比赛结束后 24 小时内联系组委会配合审核,审核通过后你的分数会重新计入排行榜。
请发邮件至 <a href="mailto:[email protected]">[email protected]</a>,邮件中包含你的 Token。
</div>
<div v-if="user" class="msg-info">
<label for="token">Token:</label>
Expand Down Expand Up @@ -221,7 +222,7 @@ <h1>{{ opened.name }}</h1>
if (this.user && this.user.suspicious_reason) {
return "有以下疑似违规行为:" + this.user.suspicious_reason;
} else {
return "存在违规行为";
return "有疑似违规行为";
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion server/user/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class User:
'nyist': '南阳理工学院',
'sjtu': '上海交通大学',
'other': '其他选手',
'suspicious': '嫌疑组',
'suspicious': '待审核',
'banned': '已封禁',
}
# XXX:
Expand Down

0 comments on commit 4fbc843

Please sign in to comment.