29 lines
735 B
HTML
29 lines
735 B
HTML
{% extends "proceedings/proceedings_template.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "includes/proceeding_title.html" %}
|
|
|
|
<h3>Attendee List of IETF {{ meeting.number }} Meeting</h3>
|
|
|
|
<!-- <table style="border-collapse:collapse;border:1px solid black;"> -->
|
|
|
|
<table border="1" callpadding="4" cellspacing="0">
|
|
<tr>
|
|
<td><strong>Last Name</strong></td>
|
|
<td><strong>First Name</strong></td>
|
|
<td><strong>Organization</strong></td>
|
|
<td><strong>ISO 3166 Code</strong></td>
|
|
</tr>
|
|
{% for attendee in attendees %}
|
|
<tr>
|
|
<td>{{ attendee.lname }}</td>
|
|
<td>{{ attendee.fname }}</td>
|
|
<td>{{ attendee.company }}</td>
|
|
<td>{{ attendee.country }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|