summaryrefslogtreecommitdiffstats
path: root/templates/people_ids.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/people_ids.html')
-rw-r--r--templates/people_ids.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/people_ids.html b/templates/people_ids.html
new file mode 100644
index 0000000..ae89337
--- /dev/null
+++ b/templates/people_ids.html
@@ -0,0 +1,30 @@
+{% 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 %}