summaryrefslogtreecommitdiffstats
path: root/templates/people_ids.html
blob: 7a9b7273d403843e01d595931f7f0e910c940a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{% 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 %}