datatracker/ietf/secr/templates/includes/search_results_table.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

21 lines
526 B
HTML

<table class="full-width">
<thead>
<tr>
<th>Name</th>
<th>Company</th>
<th>Email</th>
<th>ID</th>
</tr>
</thead>
<tbody>
{% for item in results %}
<tr class="{% cycle 'row1' 'row2' %}">
<td><a href="{% url 'ietf.secr.rolodex.views.view' id=item.person.id %}">{{item.name}}</a></td>
<td>{{item.person.affiliation}}</td>
<td>{{item.person.email_address}}</td>
<td>{{item.person.id}}</a></td>
</tr>
{% endfor %}
</tbody>
</table>