mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2026-02-08 14:21:27 +00:00
31 lines
575 B
HTML
31 lines
575 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Person Index{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- people.html - this text visible because this template has been included -->
|
|
|
|
|
|
<h2>All expoers</h2>
|
|
<table class="searchable">
|
|
<tr>
|
|
{% for persons in pcols %}
|
|
<td>
|
|
|
|
<table>
|
|
<tr><th>Person</th><th>troggle ID</th></tr>
|
|
{% for person in persons %}
|
|
<tr>
|
|
<td style="padding: 3px">{{person.fullname|safe}}</td>
|
|
<td style="padding: 3px"><a href="{{ person.get_absolute_url }}">{{person|safe}}</a></td>
|
|
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|
|
|
|
{% endblock %}
|