diff options
author | Dan McGee <dan@archlinux.org> | 2011-08-17 16:18:12 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-17 16:18:12 -0500 |
commit | e5d09fb7e9003b7f96685af9c0a722b45746448e (patch) | |
tree | 98d9a7ffd9f240c70a13e4444c5c14a2bdc82b90 /templates | |
parent | a52c2744bf3b532f3f02ce45ae9d902706f9f518 (diff) |
Add PGP signature package field
And add eventual display code for it to the details template, but don't
show it yet as no packages will have it.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/packages/details.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index bec4bdff..2f1031a6 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -139,6 +139,11 @@ <th>Last Packager:</th> <td>{% with pkg.packager as pkgr %}{% if pkgr %}{% userpkgs pkgr %}{% else %}{{ pkg.packager_str }}{% endif %}{% endwith %}</td> </tr><tr> + {% comment %} + <th>Signed:</th> + <td>{{ pkg.is_signed|yesno|capfirst }}</td> + {% endcomment %} + </tr><tr> <th>Build Date:</th> <td>{{ pkg.build_date|date:"DATETIME_FORMAT" }} UTC</td> </tr><tr> |