Projet

Général

Profil

0001-auth_fc-add-titles-to-links-opening-in-new-window-54.patch

Serghei Mihai, 23 juin 2021 11:30

Télécharger (1,83 ko)

Voir les différences:

Subject: [PATCH] auth_fc: add titles to links opening in new window (#54560)

 .../templates/authentic2_auth_fc/explanation.html               | 2 +-
 .../templates/authentic2_auth_fc/linking.html                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
src/authentic2_auth_fc/templates/authentic2_auth_fc/explanation.html
2 2
{% block fc-explanation %}
3 3
<div id="fc-explanation-text">
4 4
    <p>
5
        <a href="{{ about_url }}" target="_blank" rel="noopener">{% trans "What is FranceConnect?" %}</a>
5
        <a href="{{ about_url }}" target="_blank" rel="noopener" title="{% trans "opens in new window" %}">{% trans "What is FranceConnect?" %}</a>
6 6
    </p>
7 7
    <p>{% blocktrans %}
8 8
    FranceConnect is the solution proposed by the French state to streamline
src/authentic2_auth_fc/templates/authentic2_auth_fc/linking.html
27 27
      {% endif %}
28 28
    </div>
29 29
  </div>
30
  <p><a href="{{ about_url }}" target="_blank" rel="noopener">{% trans "What is FranceConnect?" %}</a></p>
30
  <p><a href="{{ about_url }}" target="_blank" rel="noopener" title="{% trans "opens in new window" %}">{% trans "What is FranceConnect?" %}</a></p>
31 31
</div>
32
-