mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2026-01-19 02:12:53 +00:00
39 lines
786 B
HTML
39 lines
786 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">
|
|
{% if person.user %}
|
|
<span style="color:red">
|
|
{% else %}
|
|
<span>
|
|
{% endif %}
|
|
{{person.fullname|safe}}
|
|
</span>
|
|
</td>
|
|
<td style="padding: 3px"><a href="{{ person.get_absolute_url }}">{{person|safe}}</a></td>
|
|
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
</table>
|
|
<p>People with their <span style="color:red">names in red </span> have a registered login and email address.
|
|
{% endblock %}
|