Projet

Général

Profil

0001-templates-add-last-login-date-time-info-to-account-p.patch

Frédéric Péters, 18 mai 2019 18:50

Télécharger (876 octets)

Voir les différences:

Subject: [PATCH] templates: add last login date/time info to account page
 (#31745)

 templates/authentic2/accounts.html | 6 ++++++
 1 file changed, 6 insertions(+)
templates/authentic2/accounts.html
25 25
        </div>
26 26
        {% endfor %}
27 27
      {% endif %}
28
      {% if LAST_LOGIN %}
29
        <div class="field">
30
          <span class="label">Dernière connexion</span>
31
          <span class="value">{{ LAST_LOGIN }}</span>
32
        </div>
33
      {% endif %}
28 34
    </div>
29 35
  </div>
30 36
</div>
31
-