16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
package seasonsview
|
|
|
|
import "git.haelnorr.com/h/oslstats/internal/db"
|
|
|
|
templ SeasonLeagueTablePage(season *db.Season, league *db.League) {
|
|
@SeasonLeagueLayout("table", season, league) {
|
|
@SeasonLeagueTable()
|
|
}
|
|
}
|
|
|
|
templ SeasonLeagueTable() {
|
|
<div class="bg-surface0 border border-surface1 rounded-lg p-8 text-center">
|
|
<p class="text-subtext0 text-lg">Coming Soon...</p>
|
|
</div>
|
|
}
|