diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-22 21:32:45 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-12-22 21:32:45 -0500 |
commit | 3b40bcb3fbd21a50faa5cc7a21714c6dab158cb5 (patch) | |
tree | 074263e8cfe5ed05e98873dff26c3e4294d75511 /templates/public | |
parent | d3c35bc608b6eaf299e66146e1aab76d43b69211 (diff) | |
parent | ecece25814042d262bb7a102b9cbe48fc9c87db4 (diff) |
Merge commit 'ecece25' into archweb-generic
Diffstat (limited to 'templates/public')
-rw-r--r-- | templates/public/keys.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/public/keys.html b/templates/public/keys.html index ab89423e..0818719c 100644 --- a/templates/public/keys.html +++ b/templates/public/keys.html @@ -86,16 +86,16 @@ </tr> </thead> <tbody> - {% for user in active_users %} + {% for user in active_users %}{% with user_key=user.userprofile.pgp_key %} <tr> <th>{{ user.get_full_name }}</th> - <td>{% pgp_key_link user.userprofile.pgp_key %}</td> + <td>{% pgp_key_link user_key %}</td> {% spaceless %}{% for key in keys %} - {% signature_exists signatures key.pgp_key user.userprofile.pgp_key as signed %} + {% signature_exists signatures key.pgp_key user_key as signed %} <td class="signed-{{ signed|yesno }}">{{ signed|yesno|capfirst }}</td> {% endfor %}{% endspaceless %} </tr> - {% endfor %} + {% endwith %}{% endfor %} </tbody> </table> </div> |