diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/user/show.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/user/show.html b/templates/user/show.html index 0ab58ee..20464ce 100644 --- a/templates/user/show.html +++ b/templates/user/show.html @@ -9,9 +9,11 @@ <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>{{user.address_line1 or ""}}<br/> - {{user.address_line2 or ""}}<br/> - {{user.address_city_line 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> |
