{% extends 'base.html' %} {% block page_title %}Program Events{% endblock %} {% block content %}

Program Events

Manage workshops, trainings, field visits, and meetings

Filter by Project:
Upcoming Events ({{ upcoming|length }})
{% if upcoming %} {% for ev in upcoming %}
{{ ev.start_datetime.strftime('%b') }}
{{ ev.start_datetime.strftime('%d') }}
{{ ev.title }}
{{ ev.start_datetime.strftime('%H:%M') }} {% if ev.end_datetime %} — {{ ev.end_datetime.strftime('%H:%M') }}{% endif %} {% if ev.location %}{{ ev.location }}{% endif %} {% if ev.project %}{{ ev.project.name }}{% endif %}
{% if ev.description %}
{{ ev.description[:100] }}{% if ev.description|length > 100 %}…{% endif %}
{% endif %}
{{ ev.event_type.replace('_',' ').title() }} {% if ev.creator %}by {{ ev.creator.name }}{% endif %}
{% endfor %} {% else %}

No upcoming events

{% endif %}
{% if past %}
Past Events ({{ past|length }})
{% for ev in past %}
{{ ev.start_datetime.strftime('%b') }}
{{ ev.start_datetime.strftime('%d') }}
{{ ev.title }}
{{ ev.start_datetime.strftime('%d %b %Y, %H:%M') }} {% if ev.location %}{{ ev.location }}{% endif %} {% if ev.project %}{{ ev.project.name }}{% endif %}
{{ ev.event_type.replace('_',' ').title() }}
{% endfor %}
{% endif %} {% endblock %}