Some improvements
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run

This commit is contained in:
sto
2025-03-20 16:14:48 +01:00
parent a03907f756
commit ea7cdcf608
6 changed files with 51 additions and 13 deletions

View File

@@ -8,8 +8,8 @@ class ContestsController < ApplicationController
def show
@title = @contest.name
@contestants = @contest.contestants
@puzzles = @contest.puzzles
@contestants = @contest.contestants.order(:name)
@puzzles = @contest.puzzles.order(:id)
set_badges
end