{% extends "layout/base.html" %} {% load staticfiles %} {% load i18n %} {% block content %}

{% trans "UPDATE YOUR SETTINGS" %}

{% csrf_token %}
{{ form.non_field_errors }}
  • {{ form.first_name.errors }} {{ form.first_name.label_tag }} {{ form.first_name }}
    {{ form.last_name.errors }} {{ form.last_name.label_tag }} {{ form.last_name }}
    {{ form.organization.errors }} {{ form.organization.label_tag }} {{ form.organization }}
    {{ form.timezone.errors }} {{ form.timezone.label_tag }} {{ form.timezone }}
    {{ form.language.errors }} {{ form.language.label_tag }} {{ form.language }}
  • {% blocktrans %}You can provide the public key in a static away or provide a link to your key in a public key server so we can fetch it for you (recommended).{% endblocktrans %}
    {% trans "To verify the log of the last changes to your key please click" %} {% trans "here" %}.
    {{ form.public_key.label_tag }}
    {{ form.keyserver_url.label_tag }}
    {{ form.keyserver_url.errors }} {{ form.keyserver_url }}
    {{ form.public_key.errors }} {{ form.public_key }}
    {{ form.fingerprint.errors }} {{ form.fingerprint.label_tag }} {{ form.fingerprint }}
  • {{ form.current_password.errors }} {{ form.current_password.label_tag }} {{ form.current_password }}
    {{ form.new_password2.errors }} {{ form.new_password1.label_tag }} {{ form.new_password1 }}
    {{ form.new_password2.errors }} {{ form.new_password2.label_tag }} {{ form.new_password2 }}
  • {% blocktrans %}The "Server signed" feature allows you to improve your security by allowing us to sign the (already encrypted) message with our key, so you can make sure the message really came from us. For now, the only e-mail clients that display this feature correctly are Evolution and mutt{% endblocktrans %}

    {{ form.server_signed.errors }} {{ form.server_signed.label_tag }}
    {{ form.server_signed }}

    {% trans "The key used to sign can be found" %} {% trans "here" %} {% trans "and the fingerprint, so you can verify it, is the following:" %}

    {{sign_key_fingerprint}}

{% trans "Do you wish to delete your account? if yes, just click" %} {% trans "here" %}
{% include "humans/key_change_modal.html" %} {% endblock content %} {% block scripts %} {{ block.super }} {% endblock scripts %}