{% extends "helios/templates/cryptobase.html" %} {% block title %}Trustees for {{election.name}}{% endblock %} {% block content %}

{{election.name}} — Trustees [back to election]

Trustees are responsible for decrypting the election result.

{% if not election.frozen_at %}

new trustee

{% if not election.has_helios_trustee %}

add Helios as a trustee

{% endif %} {% endif %} {% if not trustees|length %} {% else %} {% for t in trustees %}

Trustee #{{forloop.counter}}: {{t.name}} {% if admin_p %} {% if not t.secret_key %} ({{t.email}}) {% if not election.frozen_at %}[x]{% endif %} [send login] {% endif %} {% endif %}

{% if t.public_key_hash %} Public Key Fingerprint: {{t.public_key_hash}} {% else %} No public key uploaded yet. {% endif %}

{% if election.encrypted_tally %} {% if t.decryption_factors %} tally recorded for this trustee. {% else %} waiting for this trustee's tally {% endif %} {% endif %} {% endfor %} {% endif %} {% endblock %}