23 lines
628 B
Plaintext
23 lines
628 B
Plaintext
.row
|
|
.col
|
|
h4.mb-3
|
|
| Manage your contests
|
|
.float-end
|
|
a.btn.btn-primary.mb-4 href=new_contest_path
|
|
| Create a new contest
|
|
|
|
.row.row-cols-1.row-cols-md-3.g-4
|
|
- @contests.each do |contest|
|
|
.col
|
|
css:
|
|
.card:hover { background-color: lightblue; }
|
|
.card.h-100
|
|
.card-header
|
|
= contest.name
|
|
.card-body
|
|
.row
|
|
- contest.puzzles.each do |puzzle|
|
|
- if puzzle.image.attached?
|
|
.col
|
|
= image_tag puzzle.image, style: "max-height: 80px;"
|
|
a.stretched-link href=contest_path(contest) |