20 lines
657 B
HTML
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> |