X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a6db1ef5159ff618a9d1a78ff14fd705a106c130..8139f82c719f4a041b18fd445026b8cf78aca4a6:/wolnelektury/templates/account/email.html diff --git a/wolnelektury/templates/account/email.html b/wolnelektury/templates/account/email.html new file mode 100644 index 000000000..1f0710bad --- /dev/null +++ b/wolnelektury/templates/account/email.html @@ -0,0 +1,65 @@ +{% extends "account/base.html" %} +{% load i18n %} +{% load ajaxable_tags %} + +{% block titleextra %}{% trans "Account" %}{% endblock %} + +{% block body %} +

{% trans "E-mail Addresses" %}

+ +{% if user.emailaddress_set.all %} +

{% trans 'The following e-mail addresses are associated to your account:' %}

+ +
+{% csrf_token %} + {% for emailaddress in user.emailaddress_set.all %} + +{% endfor %} + +
+ + + +
+
+ +{% else %} +

{% trans 'Warning:'%} {% trans "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc." %}

+{% endif %} + + +

{% trans "Add E-mail Address" %}

+ +
+ +
+ +{% endblock %} + + +{% block extrabody %} + +{% endblock %}