25 lines
683 B
HTML
25 lines
683 B
HTML
<table id="group-search-results" class="center" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th>Group Name</th>
|
|
<th>Group Acronym</th>
|
|
<th>Status</th>
|
|
<th>Type</th>
|
|
<th>Meeting Scheduled</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in results %}
|
|
<tr class="{% cycle 'row1' 'row2' %}">
|
|
<td><a href="{% url 'ietf.secr.groups.views.view' acronym=item.acronym %}">{{item.name}}</a></td>
|
|
<td>{{item.acronym}}</td>
|
|
<td>{{item.state}}</td>
|
|
<td>{{item.type}}</td>
|
|
<td>{{item.meeting_scheduled}}</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr><td><b>No Results</b></td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|