datatracker/ietf/secr/templates/includes/group_search_results.html

25 lines
850 B
HTML

<table id="group-search-results" class="center" cellspacing="0">
<thead>
<tr>
<th scope="col">Group Name</th>
<th scope="col">Group Acronym</th>
<th scope="col">Status</th>
<th scope="col">Type</th>
<th scope="col">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>