Commit 84db84dc authored by Enrico Zini's avatar Enrico Zini
Browse files

Show when the keycheck was last updated

parent ae8dbe25
......@@ -135,7 +135,7 @@ See: <a href="http://lists.debian.org/debian-project/2010/09/msg00026.html">hand
{% if keycheck %}
<small>
<ul class="packed">
<li>Main key: <i>{{keycheck.main.remarks}}</i></li>
<li>Main key: <i>{{keycheck.main.remarks}}</i> (last updated: {{keycheck.updated|date:"Y-m-d"}})</li>
{% for uid in keycheck.uids %}
<li>{{uid.name}}: <i>{{uid.remarks}}</i>, <i>{{uid.sigs_ok}}</i> DD sigs, <i>{{uid.sigs_no_key}}</i> non-DD sigs</li>
{% endfor %}
......
......@@ -257,6 +257,7 @@ class Process(VisitorTemplateView):
"remarks": " ".join(sorted(keycheck.errors)) if keycheck.errors else "ok",
},
"uids": uids,
"updated": key.check_sigs_updated,
}
return ctx
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment