{% extends "base.html" %} {% block title %}{{ 'attendees'|t }} - NetEvents{% endblock %} {% block content %}

{{ 'event_attendees'|t }}

{{ 'connect_with_attendees'|t }}

{% if attendees %}
{% for att in attendees %}
{% if att.profile_picture %} Photo {% else %}
{{ att.first_name[0] }}{{ att.last_name[0] }}
{% endif %}

{{ att.first_name }} {{ att.last_name }}

{{ (att.organisation)|spacify if att.organisation else '' }}

{{ (att.role)|spacify if att.role else '' }}

{% if att.introduction %}

{{ att.introduction[:100] }}{% if att.introduction|length > 100 %}...{% endif %}

{% endif %}
{% if att.my_status == 'accepted' %} {{ 'connected'|t }} {% elif att.my_status == 'pending' %} {{ 'request_pending'|t }} {% elif att.my_status == 'rejected' %} {{ 'rejected'|t }} {% else %}
{% endif %}
{% endfor %}
{% else %}

{{ 'no_other_attendees'|t }}

{% endif %}
{% endblock %}