{% extends 'layout.html' %} {% from 'bootstrap5/table.html' import render_table %} {% block app_content %}

Upcoming Events

If you have any questions about an event, please reach out to acm [at] wpi [dot] edu
{% if events == [] %}

No upcoming events. If it's a break, enjoy your break!

{% else %} {% for e in events %}

{{ e.name }}

{{ e.start_time }} - {{ e.end_time }} - {{ e.location }}

{{ e.description }}

{% endfor %} {% endif %} {% endblock %}