{% load form_tags i18n %}
{% csrf_token %}

{% trans "Action Authorization" %}

{% if form.strength == 0 %} {% trans "This action was defined as having a simple security level - Only one component of the secret sent to the member of the electoral commission is needed to execute the action" %}
{% elif form.strength == 1 %} {% trans "This action was defined as having a strong security level - (M/2)+1 different components of the secret sent to the member of the electoral commission are needed to execute the action." %}
{% trans "(M = total number of members of the electoral commission)." %}
{% else %} {% trans "This action was defined as having a critical security level - All (M) the different components of the secret sent to the member of the electoral commission are needed to execute this action." %}
{% trans "(M = total number of members of the electoral commission)." %}
{% endif %} {% trans "Please upload each different component file." %}
{% for key in form %} {% endfor %}
{{key.label_tag}}
{% prepare_field key %}