diff options
author | Dan McGee <dan@archlinux.org> | 2010-07-28 14:43:17 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-07-28 14:43:17 -0500 |
commit | ed5c5f525a8eba7d1e4083be9066022f0d562fa0 (patch) | |
tree | 5b51b426d6daa3f7044c97b653f1a04955d40c5e /templates | |
parent | 77d130e33de8c1de60ffb5e0f085a4524f338daf (diff) |
Display packager info on details page
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/packages/details.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index e5e62038..9b096f55 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -108,6 +108,9 @@ <th>Installed Size:</th> <td>{{ pkg.installed_size|filesizeformat }}</td> </tr><tr> + <th>Last Packager:</th> + <td>{% with pkg.packager as pkgr %}{% if pkgr %}{{ pkgr.get_full_name }}{% else %}{{ pkg.packager_str }}{% endif %}{% endwith %}</td> + </tr><tr> <th>Build Date:</th> <td>{{ pkg.build_date }} UTC</td> </tr><tr> |