diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-02 16:21:08 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-02 16:21:08 -0500 |
commit | 1840416b9e8892a685202f30b4079fd04607151f (patch) | |
tree | af3ed598458bde0813559417c072e53d4fecdec3 /templates/public | |
parent | cc4fef23e2b4da4744224f5b2c0dbb679834aa49 (diff) |
Add a PGP key field on the dev profile
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public')
-rw-r--r-- | templates/public/developer_list.html | 9 |
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> {% 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> |