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>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Nom</th>
|
<th>Nom</th>
|
||||||
<th>Prénom</th>
|
|
||||||
<th>Lieu</th>
|
<th>Lieu</th>
|
||||||
<th>Section</th>
|
<th>Section</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -35,22 +34,11 @@
|
||||||
<td>
|
<td>
|
||||||
{% if Person.IsMember %}
|
{% if Person.IsMember %}
|
||||||
<a href="/members/{{ Person.ID }}">
|
<a href="/members/{{ Person.ID }}">
|
||||||
{{ Person.LastName }}
|
{{ Person.LastName }} {{ Person.FirstName }}
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="/contacts/{{ Person.ID }}">
|
<a href="/contacts/{{ Person.ID }}">
|
||||||
{{ Person.LastName }}
|
{{ Person.LastName }} {{ Person.FirstName }}
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{% if Person.IsMember %}
|
|
||||||
<a href="/members/{{ Person.ID }}">
|
|
||||||
{{ Person.FirstName }}
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<a href="/contacts/{{ Person.ID }}">
|
|
||||||
{{ Person.FirstName }}
|
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue