Create basic layout for manage page
parent
f7dfd24a68
commit
a6e8e924e4
|
@ -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")
|
Reference in New Issue