Create basic layout for manage page

main
sudoer777 2021-11-22 13:56:57 -07:00
parent f7dfd24a68
commit a6e8e924e4
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
extends layout
block stylesheets
link(rel='stylesheet', href='/stylesheets/index.css')
link(rel='stylesheet', href='/stylesheets/form.css')
block content
div#mobile-view
h1 Management Panel
div
span(class='form-section')
label Category
span(class='form-section-input')
select#category-dropdown(name="category" class="form-main-dropdown")
option(value="seasons") Seasons
option(value="sports") Sports
option(value="divisions") Divisions
option(value="teams") Teams
option(value="games") Games
div
h2#table-header
table
colgroup
col#score-column(span="1")
col#opponent-column(span="1")
col#date-column(span="1")
tbody#games-table
block scripts
script(src='/scripts/index.js' type="module")