aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/show.html
blob: 20464ce94d8a487ed6f18b3d25d58618d5ed8add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "layout.html" %}

{% block content %}
<h1>{{user.user_name}}</h1>
<div class="row">
  <div class="col-md-8">
    <table class="table">
      <tr><th>Email</th><td>{{user.email or ""}}</td></tr>
      <tr><th>Téléphone</th><td>{{user.phone or ""}}</td></tr>
      <tr><th>Anniversaire</th><td>{{user.birthday or ""}}</td></tr>
      <tr><th>Fête</th><td>{{user.nameday or ""}}</td></tr>
      <tr><th>Adresse</th><td><address>
            {{user.address_line1 or ""}}<br/>
            {{user.address_line2 or ""}}<br/>
            {{user.address_city_line or ""}}</address>
      </td></tr>
      <tr><th>Dernière connexion</th><td>{{user.last_seen|format_date}}</td></tr>
    </table>
  </div>
</div>
{% endblock %}