Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Debian New Member Process
nm.debian.org
Commits
84db84dc
Commit
84db84dc
authored
May 16, 2016
by
Enrico Zini
Browse files
Show when the keycheck was last updated
parent
ae8dbe25
Changes
2
Hide whitespace changes
Inline
Side-by-side
public/templates/public/process.html
View file @
84db84dc
...
...
@@ -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 %}
...
...
public/views.py
View file @
84db84dc
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment