You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now on the judge-score branch, when we open the judge scoring form, it looks like this:
The score input boxes are set to take any number, but we don't want judges to enter just any arbitrary number. In the database, we have a table called ScoringCategory that actually declares the lower and upper bounds for each of the categories:
We need to change the <input> elements for each of the categories to be dropdowns with numbers ranging from the category's min_score to its max_score.
The text was updated successfully, but these errors were encountered:
Right now on the
judge-score
branch, when we open the judge scoring form, it looks like this:The score input boxes are set to take any number, but we don't want judges to enter just any arbitrary number. In the database, we have a table called
ScoringCategory
that actually declares the lower and upper bounds for each of the categories:We need to change the
<input>
elements for each of the categories to be dropdowns with numbers ranging from the category'smin_score
to itsmax_score
.The text was updated successfully, but these errors were encountered: