Projet

Général

Profil

0001-templates-remove-note-about-link-validitity-in-regis.patch

Thomas Noël, 30 octobre 2019 22:39

Télécharger (1,45 ko)

Voir les différences:

Subject: [PATCH] templates: remove note about link validitity in registration
 message (#37359)

 .../templates/registration/registration_complete.html  | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)
src/authentic2/templates/registration/registration_complete.html
10 10
  {% blocktrans with email=request.session.registered_email %}
11 11
    <p>An email was sent to {{ email }}.</p>
12 12
  {% endblocktrans %}
13
  {% if account_activation_days > 1 %}
14 13
  {% blocktrans %}
15
    <p>Follow the instructions in this email to continue your registration, this
16
    email will be valid during {{account_activation_days}} days.</p>
14
    <p>Follow the instructions in this email to continue your registration.</p>
17 15
  {% endblocktrans %}
18
  {% else %}
19
  {% blocktrans %}
20
    <p>Follow the instructions in this email to continue your registration, this
21
    email will be valid during 24 hours.</p>
22
  {% endblocktrans %}
23
  {% endif %}
24 16
  {% endblock %}
25 17
  {% block advice %}
26 18
    {% blocktrans with from_email=from_email %}
27
-