{% extends "base.html" %} {% block title %}{{ 'attendee_dashboard'|t }} - NetEvents{% endblock %} {% block content %}
{{ 'start'|t }}: {{ event.start_time|localized_date if event.start_time else 'TBD' }}
{% if event.end_time %}{{ 'end'|t }}: {{ event.end_time|localized_date }}
{% endif %}{{ 'location'|t }}: {{ event.location }}
{{ (conn.organisation)|spacify if conn.organisation else '' }}
{{ (conn.role)|spacify if conn.role else '' }}
{{ 'no_connections_yet'|t }}
{% endif %}{% if apt.requester_id == session.user_id %} {{ 'with'|t }} {{ apt.target_first_name }} {{ apt.target_last_name }} {% else %} {{ 'with'|t }} {{ apt.requester_first_name }} {{ apt.requester_last_name }} {% endif %}
{{ 'time'|t }}: {{ apt.appointment_time|localized_date if apt.appointment_time else 'TBD' }}
{{ 'location'|t }}: {{ apt.location or 'TBD' }}
{{ (apt.status)|spacify if apt.status else '' }}
{{ 'no_appointments'|t }}
{% endif %}