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/team.html | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 templates/team.html (limited to 'templates/team.html') diff --git a/templates/team.html b/templates/team.html new file mode 100644 index 0000000..e7098be --- /dev/null +++ b/templates/team.html @@ -0,0 +1,65 @@ +{% extends "base.html" %} + +{% block content %} +

Team Management: {{ current_user.team_name }}

+ + {% if current_user.team_icon %} +
+ Team Icon +
+ {% endif %} + +
+
+

Update Profile

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

Seasons

+ {% if seasons %} +
    + {% for season in seasons %} +
  • + {{ season.name }} ({{ season.status }}) + + {% if not current_user.is_admin %} + {% if season.id in my_seasons %} + {% if my_seasons[season.id] == 'Approved' %} + Joined + {% else %} + Pending Approval + {% endif %} + {% else %} +
    + +
    + {% endif %} + {% endif %} +
  • + {% endfor %} +
+ {% else %} +

No seasons available right now.

+ {% endif %} + +

Your Schedule

+

Below is your team's schedule for the active season.

+ View Full Team Schedule +
+
+{% endblock %} \ No newline at end of file -- cgit v1.2.3