Changed column order in selection
This commit is contained in:
parent
b53598860d
commit
cd28997758
|
@ -69,19 +69,19 @@
|
||||||
<table class="table table-striped table-hover">
|
<table class="table table-striped table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">personnel number</th>
|
<th scope="col">Personalnummer</th>
|
||||||
<th scope="col">first name</th>
|
<th scope="col">Nachname</th>
|
||||||
<th scope="col">last name</th>
|
<th scope="col">Vorname</th>
|
||||||
<th scope="col">date of birth</th>
|
<th scope="col">Geburtsdatum</th>
|
||||||
<th scope="col">actions</th>
|
<th scope="col">Aktionen</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{{#each member_list}}
|
{{#each member_list}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{member.personnel_number}}</td>
|
<td>{{member.personnel_number}}</td>
|
||||||
<td>{{member.firstname}}</td>
|
|
||||||
<td>{{member.lastname}}</td>
|
<td>{{member.lastname}}</td>
|
||||||
|
<td>{{member.firstname}}</td>
|
||||||
<td>{{member.date_of_birth}}</td>
|
<td>{{member.date_of_birth}}</td>
|
||||||
<td>{{#if read}}
|
<td>{{#if read}}
|
||||||
<a href="/portal/mm/profile?action=view&id={{member.entity_id}}"><svg width="1.5em" height="1.5em" fill="currentColor">
|
<a href="/portal/mm/profile?action=view&id={{member.entity_id}}"><svg width="1.5em" height="1.5em" fill="currentColor">
|
||||||
|
|
Loading…
Reference in New Issue