This commit is contained in:
2025-12-05 19:23:50 -08:00
parent 8c973d35cb
commit 584b118d62
3 changed files with 35 additions and 14 deletions

9
templates/404.html Normal file
View File

@@ -0,0 +1,9 @@
<html>
<head>
<title>404 - Page not Found</title>
</head>
<body>
<p>We couldn't find what you were looking for D:</p>
<a href="{{ url_for('index', _external=True) }}">Return home</a>
</body>
</html>

View File

@@ -1,21 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Event - {{ title }}</title>
<title>Event - {{ title }}</title>
</head>
<body>
<h1>{{ title }}</h1>
<p>{{ time }}</p>
<table>
<tr>
<th>User</th>
</tr>
{% for user_id, user_name in users %}
<tr>
<td><a href="{{ url_for('users', user_id=user_id, _external=True) }}">{{ user_name }}</a></td>
<td>{{ event_date }}</td>
</tr>
{% endfor %}
</table>
<h1>{{ title }}</h1>
<p>{{ time }}</p>
<table>
<tr>
<th>User</th>
</tr>
{% for user_id, user_name in users %}
<tr>
<td><a href="{{ url_for('users', user_id=user_id, _external=True) }}">{{ user_name }}</a></td>
<td>{{ event_date }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>