{# SPDX-License-Identifier: MIT OR Apache-2.0 #} {# SPDX-FileCopyrightText: The Ferrocene Developers #} {% extends "layout.html" %} {% set title = "Digital signatures" %} {% block body %}

Digital signatures

{% if state == "unsigned" %}

Caution

This document is not digitally signed.

{% elif state == "inconsistent" %}

Error

Some signature files are missing, but the build system marked this document as being signed. This is an intermediate step of the signature process that should never end up in released documents.

{% else %}

This document has been digitally signed by the following people:

{% for role_name, role in signature["config"]["roles"].items() %} {% if signature["signatures"][role_name]["present"] %} {% else %} {% endif %} {% endfor %}
Name Role Email Signature time Signed file Signature bundle
{{ role["name"] }} {{ role["role-name"] }} {{ role["email"] }} {{ signature["signatures"][role_name]["time"] }}pinned.toml {{ role_name }}.cosign-bundle- -
{% endif %}
{% endblock %}