acm-site/acmsite/templates/dashboard.html
2024-08-28 16:16:45 -04:00

28 lines
1,008 B
HTML

{% extends "layout.html" %}
{% block app_content %}
<h1>Welcome back, {{ current_user.first_name }}!</h1>
{% if events %}
<p>The following events are available for check-in:</p>
{% for e in events %}
<a href="{{ url_for('dashboard.checkin', event_id=e.id) }}">{{ e.name }}</a>
{% endfor %}
{% else %}
<p>There are no events available for check-in.</p>
{% endif %}
<hr/>
<p>For a list of upcoming events, take a look at our <a href="{{
url_for('main.events')
}}">events
listing</a>.
Otherwise, there's not
a whole lot here
unless you're an
officer!</p>
{% endblock app_content %}