Projet

Général

Profil

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

Frédéric Péters, 30 octobre 2019 19:06

Télécharger (1,44 ko)

Voir les différences:

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

 .../registration/registration_complete.html          | 12 ------------
 1 file changed, 12 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
  {% 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>
17
  {% 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
  {% endblock %}
25 13
  {% block advice %}
26 14
    {% blocktrans with from_email=from_email %}
27 15
    <p>To be sure to receive this email we recommend you to add the
28
-