This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-11-22 20:56:57 +00:00
|
|
|
extends layout
|
|
|
|
|
|
|
|
block stylesheets
|
2021-11-22 21:50:32 +00:00
|
|
|
link(rel='stylesheet', href='/stylesheets/manage.css')
|
2021-11-22 20:56:57 +00:00
|
|
|
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
|
2021-11-25 05:29:29 +00:00
|
|
|
option(value="accounts") Accounts
|
2021-11-22 20:56:57 +00:00
|
|
|
div
|
|
|
|
h2#table-header
|
2022-03-09 17:20:53 +00:00
|
|
|
span#loading-message Loading...
|
2021-11-22 21:50:32 +00:00
|
|
|
table#items-list
|
2021-11-23 01:42:02 +00:00
|
|
|
button#add-new-button Add new...
|
2021-11-22 20:56:57 +00:00
|
|
|
|
|
|
|
block scripts
|
2021-11-22 21:50:32 +00:00
|
|
|
script(src='/scripts/manage.js' type="module")
|