Add specialist rating

This commit is contained in:
cuom1999 2021-12-09 12:55:58 -06:00
parent c4fd928faf
commit b7e2e67bf9
3 changed files with 21 additions and 8 deletions

View file

@ -190,8 +190,8 @@ def rate_contest(contest):
RATING_LEVELS = ['Newbie', 'Amateur', 'Expert', 'Candidate Master', 'Master', 'Grandmaster', 'Target']
RATING_VALUES = [1000, 1300, 1600, 1900, 2400, 3000]
RATING_CLASS = ['rate-newbie', 'rate-amateur', 'rate-expert', 'rate-candidate-master',
RATING_VALUES = [1000, 1400, 1700, 1900, 2100, 2400, 3000]
RATING_CLASS = ['rate-newbie', 'rate-amateur', 'rate-specialist', 'rate-expert', 'rate-candidate-master',
'rate-master', 'rate-grandmaster', 'rate-target']