Members list: merge first & last name

This commit is contained in:
William Bouzourène 2025-01-13 12:40:28 +01:00
parent 917fe799d3
commit 6593a4340c
Signed by: bouzoure
SSH key fingerprint: SHA256:19MbXpLua4rUtk8tunMesD8KUKb91LXLHg8E/qTooww

View file

@ -24,7 +24,6 @@
<thead>
<tr>
<th>Nom</th>
<th>Prénom</th>
<th>Lieu</th>
<th>Section</th>
</tr>
@ -35,22 +34,11 @@
<td>
{% if Person.IsMember %}
<a href="/members/{{ Person.ID }}">
{{ Person.LastName }}
{{ Person.LastName }} {{ Person.FirstName }}
</a>
{% else %}
<a href="/contacts/{{ Person.ID }}">
{{ Person.LastName }}
</a>
{% endif %}
</td>
<td>
{% if Person.IsMember %}
<a href="/members/{{ Person.ID }}">
{{ Person.FirstName }}
</a>
{% else %}
<a href="/contacts/{{ Person.ID }}">
{{ Person.FirstName }}
{{ Person.LastName }} {{ Person.FirstName }}
</a>
{% endif %}
</td>