From 5249744b01849b7158ff9cf796c550924f452320 Mon Sep 17 00:00:00 2001 From: Anson Bridges Date: Fri, 3 Apr 2026 16:02:56 -0700 Subject: start er up --- templates/admin.html | 138 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 templates/admin.html (limited to 'templates/admin.html') diff --git a/templates/admin.html b/templates/admin.html new file mode 100644 index 0000000..19c7bd9 --- /dev/null +++ b/templates/admin.html @@ -0,0 +1,138 @@ +{% extends "base.html" %} + +{% block content %} +

League Administration

+ +
+
+

Create New Season

+
+ +
+ + +
+ +
+
+ +
+

Create Team/User

+
+ +
+ + +
+
+ + +
+
+ + +
+ +
+
+
+ +
+

Manage Seasons

+ {% if seasons %} + + + + + + + + {% for season in seasons %} + + + + + + + {% endfor %} +
IDNameStatusActions
{{ season.id }}{{ season.name }}{{ season.status }} +
+ +
+ + + +
+ +
+
+ + + {% else %} +

No seasons created yet.

+ {% endif %} +
+ +
+

Registered Teams

+ {% if teams %} + + {% else %} +

No teams registered yet.

+ {% endif %} +
+{% endblock %} \ No newline at end of file -- cgit v1.2.3