From e6593d4b140be8a1159615868748a3c7e4a58c6f Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Wed, 16 Sep 2020 00:53:44 +0200 Subject: [PATCH] Nouvelle page de vue de fiche d'annuaire --- fiches/templates/fiches/fiche.html | 136 +++++++++++++++-------------- 1 file changed, 70 insertions(+), 66 deletions(-) diff --git a/fiches/templates/fiches/fiche.html b/fiches/templates/fiches/fiche.html index 27dc3a7..b33c96e 100644 --- a/fiches/templates/fiches/fiche.html +++ b/fiches/templates/fiches/fiche.html @@ -1,73 +1,77 @@ {% extends "fiches/base.html" %} -{% block content %} -
-
- {% if profile.picture %} - - {% endif %} -
-
-

{{ profile.full_name }} - ({{ profile.promotion }}) - {% if profile.nickname %} - (alias:{{ profile.nickname }})

- {% endif %} -

- {% if profile.pronoun %} - Pronom(s) utilisé(s) :{{ profile.pronoun }} - {% endif %} -

-

- {% if profile.department.exists %} - Département{{ profile.department.count|pluralize}} : - {% endif %} - {% for dep in profile.department.all %} - {{ dep }} - {% if not forloop.last %} - , - {% endif %} - {% endfor %} - {% if profile.birth_date %} -

-

- {% if profile.phone_set.exists %} - Téléphone{{ profile.phone_set.count|pluralize}} : - {% endif %} - {% for ph in profile.phone_set.all %} - {{ ph }} - {% if not forloop.last %} - ,
- {% endif %} - {% endfor %} -

-

- {% if profile.social_set.exists %} - {{ profile.social_set.count|pluralize:"Réseau social,Réseaux sociaux"}} : - {% endif %} - {% for ph in profile.social_set.all %} - {{ ph }} - {% if not forloop.last %} - ,
- {% endif %} - {% endfor %} -

-

- Date de naissance : {{ profile.birth_date }} -

- {% endif %} +{% load i18n %} - {% if profile.thurne %} -

- Thurne : {{ profile.thurne }} -

- {% endif %} -
+{% block content %} + + +
+
+ {% if profile.picture %} + + + + {% endif %} +

+ {{ profile.full_name }} ({{ profile.promotion }}) + {% if profile.nickname %} + (alias : {{ profile.nickname }}) + {% endif %} +

-
- {% if profile.text_field %} -

- Champ libre : {{ profile.text_field }} + +

+ {% if profile.pronoun %} +

+ {% trans "Pronom(s) utilisé(s)" %} + + {{ profile.pronoun }} +

+ {% endif %} + {% if profile.department.exists %} +

+ {% trans "Département" %}{{ profile.department.count|pluralize }} + + {% for dep in profile.department.all %}{{ dep }}{% if not forloop.last %}, {% endif %}{% endfor %} +

+ {% endif %} + {% if profile.birth_date %} +

+ {% trans "Date de naissance" %} + + {{ profile.birth_date }} +

+ {% endif %} + {% if profile.thurne %} +

+ {% trans "Thurne" %} + + {{ profile.thurne }} +

+ {% endif %} + {% if profile.phone_set.exists %} +

+ {% trans "Téléphone" %}{{ profile.phone_set.count|pluralize }} + + {% for p in profile.phone_set.all %}{{ p }}{% if not forloop.last %},
{% endif %}{% endfor %}
+

+ {% endif %} + {% if profile.social_set.exists %} +

+ {{ profile.social_set.count|pluralize:_("Réseau social,Réseaux sociaux") }} + + {% for p in profile.social_set.all %}{{ p }}{% if not forloop.last %},
{% endif %}{% endfor %}

{% endif %}
+ + {% if profile.text_field %} +
+ Champ libre +

QJFBsd

+
+ {% endif %} + +
+ + {% endblock %}