.row .col h3 Informations = form_with model: contestant, url: url, method: method do |form| .row.mb-3 .col .form-floating = form.text_field :name, autocomplete: "off", class: "form-control" = form.label :name, class: "required" .row.mb-3 .col .form-floating = form.text_field :email, autocomplete: "off", class: "form-control" = form.label :email .form-text Optional. Fill this only if you intend to send emails through this app. .row.mt-4 .col - if method == :patch = link_to "Delete", contest_contestant_path(contest, contestant), data: { turbo_method: :delete }, class: "btn btn-danger me-2" = form.submit submit_text, class: "btn btn-primary" - if method == :patch .row.mt-5 .col h3 Completions table.table.table-striped.table-hover thead tr th scope="col" | Time since start th scope="col" | Puzzle tbody - @completions.each do |completion| tr scope="row" td = link_to completion.time_seconds, edit_contest_completion_path(@contest, completion, contestant.id) td = completion.puzzle.name .row .col a.btn.btn-primary href=new_contest_completion_path(@contest, contestant_id: contestant.id) | Add completion