26 lines
876 B
Plaintext
26 lines
876 B
Plaintext
extends layout
|
|
|
|
block stylesheets
|
|
link(rel='stylesheet', href='/stylesheets/manage.css')
|
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
|
|
|
block content
|
|
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
|
|
option(value="accounts") Accounts
|
|
div
|
|
h2#table-header
|
|
span#loading-message Loading...
|
|
table#items-list
|
|
button#add-new-button Add new...
|
|
|
|
block scripts
|
|
script(src='/scripts/manage.js' type="module") |