summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/public/keys.html4
-rw-r--r--templates/releng/result_section.html2
2 files changed, 4 insertions, 2 deletions
diff --git a/templates/public/keys.html b/templates/public/keys.html
index 20b91749..43b1b067 100644
--- a/templates/public/keys.html
+++ b/templates/public/keys.html
@@ -34,13 +34,14 @@
<th>Owner's Signing Key</th>
<th>Revoker</th>
<th>Revoker's Signing Key</th>
+ <th>Developer/TU Keys Signed</th>
</tr>
</thead>
<tbody>
{% for key in keys %}
<tr>
<td>{% pgp_key_link key.pgp_key %}</td>
- <td>{{ key.pgp_key|pgp_fingerprint }}</td>
+ <td><tt>{{ key.pgp_key|pgp_fingerprint }}</tt></td>
{% with key.owner.userprofile as owner_profile %}
<td><a href="{{ owner_profile.get_absolute_url }}">{{ key.owner.get_full_name }}</a></td>
<td>{% pgp_key_link owner_profile.pgp_key %}</td>
@@ -49,6 +50,7 @@
<td><a href="{{ revoker_profile.get_absolute_url }}">{{ key.revoker.get_full_name }}</a></td>
<td>{% pgp_key_link revoker_profile.pgp_key %}</td>
{% endwith %}
+ <td>{{ key.signature_count }}</td>
</tr>
{% endfor %}
</tbody>
diff --git a/templates/releng/result_section.html b/templates/releng/result_section.html
index 08e46fb7..e9375cdd 100644
--- a/templates/releng/result_section.html
+++ b/templates/releng/result_section.html
@@ -6,7 +6,7 @@
{% for item in option.values %}
<tr>
<td>
- <a href="{% url releng-results-for option.name|lower item.value.pk %}">
+ <a href="{% url releng-results-for option.field_name item.value.pk %}">
{{ item.value.name|lower }}
</a>
</td>