Browse Source

Make check of pending email confirmation cleaner in profile.html

release-2.9
Jean-Romain Garnier 6 years ago
committed by Gabriel Detraz
parent
commit
73b11a3e93
  1. 2
      users/templates/users/profil.html

2
users/templates/users/profil.html

@ -200,7 +200,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="col-md-6">
<dt>{% trans "Email address" %}</dt>
<dd><a href="mailto:{{ users.email }}">{{ users.email }}</a>{% if users.email_change_date is not None %}<br/><i class="text-warning">{% trans "Pending confirmation..." %}</i>{% endif %}</dd>
<dd><a href="mailto:{{ users.email }}">{{ users.email }}</a>{% if users.email_state != users.EMAIL_STATE_VERIFIED %}<br/><i class="text-warning">{% trans "Pending confirmation..." %}</i>{% endif %}</dd>
</div>
<div class="col-md-6">

Loading…
Cancel
Save