datatracker/ietf/secr/templates/includes/group_search_results.html
Henrik Levkowetz 5f053ad21a Cleaned up the remaining explicit url names, using dotted-paths to view
functions instead.  In all almost 700 changes.
 - Legacy-Id: 12923
2017-02-26 23:21:49 +00:00

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>