{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Contacts - {% endblock %} {% block meeting_information_active %}active{% endblock %} {% block content %}
{% if contacts %} {% for contact in contacts %} {% endfor %}
Name Email Institution
{{ contact }} {{ contact.email_address }} {{ contact.institution }}
{% else %}

There are no contacts setup for this meeting

{% endif %}

< Back to Meetings

{% endblock %}