summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-06-02 16:21:08 -0500
committerDan McGee <dan@archlinux.org>2011-06-02 16:21:08 -0500
commit1840416b9e8892a685202f30b4079fd04607151f (patch)
treeaf3ed598458bde0813559417c072e53d4fecdec3 /templates
parentcc4fef23e2b4da4744224f5b2c0dbb679834aa49 (diff)
downloadarchweb-1840416b9e8892a685202f30b4079fd04607151f.tar.gz
archweb-1840416b9e8892a685202f30b4079fd04607151f.zip
Add a PGP key field on the dev profile
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/public/developer_list.html9
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/public/developer_list.html b/templates/public/developer_list.html
index bb03f439..2abbbfe4 100644
--- a/templates/public/developer_list.html
+++ b/templates/public/developer_list.html
@@ -1,12 +1,12 @@
-<div id="arch-bio-toc">
+{% load pgp %}
+<div id="arch-bio-toc">
<p>
{% for dev in dev_list %}
<a href="#{{ dev.username }}" title="Jump to profile for {{ dev.get_full_name }}">
{{ dev.first_name }}{{ dev.last_name.0|capfirst}}</a> &nbsp;&nbsp;
{% endfor %}
</p>
-
</div>
<table class="arch-bio-entry">
@@ -32,12 +32,15 @@
<th>Other Contact:</th>
<td>{{ prof.other_contact }}</td>
</tr><tr>
+ <th>PGP Key:</th>
+ <td>{% pgp_key_link prof.pgp_key %}</td>
+ </tr><tr>
<th>Roles:</th>
<td>{{ prof.roles }}<br />
</td>
</tr><tr>
<th>Website:</th>
- <td>{% if prof %}<a href="{{ prof.website }}"
+ <td>{% if prof.website %}<a href="{{ prof.website }}"
title="Visit the website for {{ dev.get_full_name }}">
{{ prof.website }}</a>{% endif %}</td>
</tr><tr>