27 lines
819 B
Plaintext
27 lines
819 B
Plaintext
extends base.pug
|
|
include mixin-availability-progress-bar.pug
|
|
|
|
block content
|
|
.Panel
|
|
.Panel-header
|
|
h3.Panel-title #{event.formattedTitle}
|
|
.Panel-body
|
|
.Panel-row
|
|
h6.card-text.text-muted.mb-2
|
|
|#{event.startDate}
|
|
br
|
|
|#{event.locationName}
|
|
.Panel-row
|
|
h4 Availability
|
|
+availability-progress-bar(availabilitySummary, team)
|
|
.Panel-row
|
|
div.d-flex
|
|
a(class="Button m-auto" href=`/${team_id}/event/${event.id}/lineup`)
|
|
i(class="bi bi-clipboard")
|
|
span.mx-1 Lineup
|
|
a(class="Button m-auto" href=`/${team_id}/event/${event.id}/gamecard`)
|
|
i(class="bi bi-book")
|
|
span.mx-1 Game Card
|
|
a(class="Button m-auto" href=`https://go.teamsnap.com/${team_id}/schedule/view_game/${event.id}`)
|
|
i(class="bi bi-asterisk")
|
|
span.mx-1 TeamSnap |