datatracker/ietf/templates/meeting/proceedings_attendees_table.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

20 lines
657 B
HTML

<table id="id_attendees" class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th data-sort="last">Last name</th>
<th data-sort="first">First name</th>
<th data-sort="organization">Organization</th>
<th data-sort="country">Country</th>
</tr>
</thead>
<tbody>
{% for attendee in attendees %}
<tr>
<td>{{ attendee.LastName }}</td>
<td>{{ attendee.FirstName }}</td>
<td>{{ attendee.Company }}</td>
<td>{{ attendee.Country }}</td>
</tr>
{% endfor %}
</tbody>
</table>