{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "My profile" %}{% endblock %} {% block content %}
{% if profile.has_unverified_email_adresses %}

{% trans 'Your email address has not been verified' %}

{% trans 'Verify now' %}
{% endif %}

{% trans 'Notifications' %}

{% if alerts|length > 0 %} {# The flush allows us to reuse the card bodies border #}
    {% for alert in alerts %}
  • {% trans "Search" %}
    {% csrf_token %}
    {{ alert }}
  • {% endfor %}
{% else %}

{% blocktrans with site_name=settings.TEMPLATE_META.site_name %}{{ site_name }} can send you custom notifications. Just click the subscribe button on searches, persons or papers and we'll notify you via mail about any changes. You can even select an area on the map as basis for the notifications.{% endblocktrans %}

{% endif %}

{% trans 'Account Settings' %}

{% if settings.TEMPLATE_META.enable_pgp %}

{% trans 'Mail Encryption' %}

{% if not profile.pgp_key_fingerprint %}
{% csrf_token %}
{% trans "Select your pgp key receive encrypted notifications. Note that encryted notifications are plaintext only." %}
{% else %}
{% csrf_token %}
{% trans "Your notifications will be pgp encrypted. Fingerprint: " %}{{ profile.pgp_key_fingerprint }}
{% endif %}
{% endif %}
{% endblock %}