diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-08-03 16:01:52 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-08-03 16:01:52 -0300 |
commit | a8b2fc84ba96c83ec1addf89ac04608fbf572705 (patch) | |
tree | 6f54cbe43b8684908f2e80ba311272c06fd0fd08 /templates/public | |
parent | 294bf173236610fc8c308f81d8617e7e0d0e4bff (diff) | |
parent | b0bad20756549df5edf726771c8e6869caba6244 (diff) |
Merge branch 'master' of git://projects.archlinux.org/archweb
Conflicts:
templates/base.html
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> |