{% extends "layouts/base.html" %} {% block title %} Upload a KEYS file ~ ATR {% endblock title %} {% block description %} Upload a KEYS file containing multiple GPG public keys. {% endblock description %} {% block stylesheets %} {{ super() }} {% endblock stylesheets %} {% block content %}
Upload a KEYS file containing multiple GPG public keys.
{% if form.errors %}{{ field }}: {{ error }}
{% endfor %} {% endfor %}The following keys were found in your KEYS file and processed against the selected committees. Green squares indicate that a key was added, grey squares indicate that a key already existed, and red squares indicate an error.
Fingerprint | User ID | {% for committee_name in submitted_committees %}
{{ committee_map.get(committee_name, committee_name) }}
|
{% endfor %}
---|---|---|
{{ key_info.fingerprint[:16]|upper }}
|
{{ key_info.email }} | {% for committee_name in submitted_committees %} {% set status = key_info.committee_statuses.get(committee_name) %} {% set cell_class = 'page-status-cell-error' if key_info.status == 'error' else 'page-status-cell-new' if status == 'newly_linked' else 'page-status-cell-existing' if status == 'already_linked' else 'page-status-cell-unknown' %} {% set title_text = 'Error processing key' if key_info.status == 'error' else 'Newly linked' if status == 'newly_linked' else 'Already linked' if status == 'already_linked' else 'Unknown status' %}{% endfor %} |