{% extends "layout.html" %} {% block app_content %}

Welcome back, {{ current_user.first_name }}!

{% if events %}

The following events are available for check-in:

{% for e in events %}
{{ e.name }} Check in
{% endfor %} {% else %}

There are no events available for check-in.

{% endif %}

For a list of upcoming events, take a look at our events listing. Otherwise, there's not a whole lot here unless you're an officer!

{% endblock app_content %}