gamechanger updates (added events, teams)

This commit is contained in:
2022-06-15 10:26:12 -05:00
parent f5382f2d55
commit a3d6853ac5
8 changed files with 290 additions and 42 deletions

View File

@@ -0,0 +1,16 @@
{% extends "base.html" %}{% load tz %}
{% block title_header %}GameChanger Events{% endblock title_header %}
{% block content %}
<table class="table">
{% for event in events %}
<tr>
<th>
{{ event.title }}
</th>
<td>
{{ event.start|localtime }}
</td>
</tr>
{% endfor %}
</table>
{% endblock %}