Autofill puzzle and don't show it when there's only one puzzle
This commit is contained in:
parent
bc32387c21
commit
baea71b312
@ -21,11 +21,16 @@
|
|||||||
.form-floating
|
.form-floating
|
||||||
= form.select :contestant_id, @contestants.map { |contestant| [contestant.name, contestant.id] }, {}, class: "form-select"
|
= form.select :contestant_id, @contestants.map { |contestant| [contestant.name, contestant.id] }, {}, class: "form-select"
|
||||||
= form.label :contestant_id
|
= form.label :contestant_id
|
||||||
|
- if @puzzles.size > 1
|
||||||
.row.mb-3
|
.row.mb-3
|
||||||
.col
|
.col
|
||||||
.form-floating
|
.form-floating
|
||||||
= form.select :puzzle_id, @puzzles.map { |puzzle| ["#{puzzle.name} - #{puzzle.brand}", puzzle.id] }, {}, class: "form-select"
|
= form.select :puzzle_id, @puzzles.map { |puzzle| ["#{puzzle.name} - #{puzzle.brand}", puzzle.id] }, {}, class: "form-select"
|
||||||
= form.label :puzzle_id
|
= form.label :puzzle_id
|
||||||
|
- elsif @puzzles.size == 1
|
||||||
|
= form.hidden_field :puzzle_id, value: @puzzles.first.id
|
||||||
|
- else
|
||||||
|
= form.hidden_field :puzzle_id
|
||||||
.row
|
.row
|
||||||
.col
|
.col
|
||||||
= form.submit submit_text, class: "btn btn-primary"
|
= form.submit submit_text, class: "btn btn-primary"
|
Loading…
x
Reference in New Issue
Block a user