Members list: merge first & last name
This commit is contained in:
parent
917fe799d3
commit
6593a4340c
1 changed files with 2 additions and 14 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue