Projet

Général

Profil

0001-Define-profile-frontends-titles-in-account-template.patch

Mikaël Ates (de retour le 29 avril), 16 mars 2016 16:02

Télécharger (1,03 ko)

Voir les différences:

Subject: [PATCH 1/1] Define profile frontends titles in account template.

 src/authentic2/templates/authentic2/accounts.html | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
src/authentic2/templates/authentic2/accounts.html
43 43
    </div>
44 44
    <div id="a2-credentials" class="a2-profile-block">
45 45
      <h3>{% trans "Credentials" %}</h3>
46
      {% for html_block in frontends_block %}
47
        {{ html_block|safe }}
46
      {% for id, block in frontends_block_by_id.items %}
47
        <h4>{{ block.name }}</h4>
48
        {{ block.content }}
48 49
      {% endfor %}
49 50
      {% if federation_management %}
50 51
        <div id="federation-management">
51
-