blob: 94d1881c87dbbf5da42b86ec55f882126e71b4a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
{% extends "base_content.html" %}
{% load i18n %}
{% block title %}{% spaceless %}{% trans "Change email" %}{% endspaceless %}{% endblock %}
{% block content %}
<!-- changeemail.html action_type={{action_type}}-->
{% ifequal action_type "change" %}
<div id="main-bar" class="headNormal">
{% if user.email %}
{% trans "Change email" %}
{% else %}
{% trans "Save your email address" %}
{% endif %}
</div>
<p class="message">
{% if user.email %}
{% blocktrans %}change {{email}} info{% endblocktrans %}
{% else %}
{% blocktrans %}here is why email is required, see {{gravatar_faq_url}}{% endblocktrans %}
{% endif %}
</p>
{% if msg %}
<p class="error">{{ msg }}</p>
{% endif %}
<div class="aligned">
<form action="." method="post" accept-charset="utf-8">
{% if next %}
<input type="hidden" name="next" value="{{next}}"/>
{% endif %}
<div class="form-row-vertical">
<label for="id_email">{% if user.email %}{% trans "Your new Email" %}{% else %}{% trans "Your Email" %}{% endif %}</label>
{% if form.email.errors %}
<p class="error">{{form.email.errors|join:", "}}</p>
{% endif %}
{{ form.email }}
</div>
<div class="submit-row">
<input class="submit" type="submit" name="change_email" value="{% if user.email %}{% trans "Change email" %}{% else %}{% trans "Save Email" %}{% endif %}">
{% if user.email %}
<input class="submit" type="submit" name="cancel" value="{% trans "Cancel" %}">
{% endif %}
</div>
</form>
</div>
{% endifequal %}
{% ifequal action_type "validate" %}
<div id="main-bar" class="headNormal">
{% trans "Validate email" %}
</div>
<p class="message">
{% blocktrans %}validate {{email}} info or go to {{change_email_url}}{% endblocktrans %}
</p>
{% endifequal %}
{% ifequal action_type "keep" %}
<div id="main-bar" class="headNormal">
{% trans "Email not changed" %}
</div>
<p class="message">
{% blocktrans %}old {{email}} kept, if you like go to {{change_email_url}}{% endblocktrans %}
</p>
{% endifequal %}
{% ifequal action_type "done_novalidate" %}
<div id="main-bar" class="headNormal">
{% trans "Email changed" %}
</div>
<p class="message">
{% blocktrans %}your current {{email}} can be used for this{% endblocktrans %}
</p>
{% endifequal %}
{% ifequal action_type "validation_complete" %}
<div id="main-bar" class="headNormal">
{% trans "Email verified" %}
</div>
<p class="message">
{% trans "thanks for verifying email" %}
</p>
{% endifequal %}
{% ifequal action_type "key_not_sent" %}
<div id="main-bar" class="headNormal">
{% trans "email key not sent" %}
</div>
<p class="message">
{% blocktrans %}email key not sent {{email}} change email here {{change_link}}{% endblocktrans %}
</p>
{% endifequal %}
{% endblock %}
<!-- end changeemail.html -->
|