mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-07-25 02:00:35 +02:00
fix
This commit is contained in:
@ -9,11 +9,13 @@
|
||||
|
||||
<dt class="col-xl-6">{% trans 'family'|capfirst %}</dt>
|
||||
<dd class="col-xl-6">
|
||||
{% for family in families %}
|
||||
<a href="{% url 'family:family_detail' family.pk %}">{{ family.name }}</a>{% if not forloop.last %}, {% endif %}
|
||||
{% empty %}
|
||||
<em>{% trans 'None' %}</em>
|
||||
{% endfor %}
|
||||
{% if families %}
|
||||
{% for fam in families %}
|
||||
<a href="{% url 'family:family_detail' fam.pk %}">{{ fam.name }}</a>{% if not forloop.last %}, {% endif %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<span class="text-muted">Aucune</span>
|
||||
{% endif %}
|
||||
</dd>
|
||||
|
||||
{% if user_object.pk == user.pk %}
|
||||
|
Reference in New Issue
Block a user