datatracker/ietf/templates/meeting/proceedings_attendees_table.html
Lars Eggert cf629a42ad And more fixes.
- Legacy-Id: 19877
2022-01-25 10:14:25 +00:00

21 lines
669 B
HTML

{# bs5ok #}
<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>