forked from Github-Mirrors/canaille
Show user id instead of phone number on the user list
This commit is contained in:
parent
860b1d3803
commit
db750db5ba
1 changed files with 3 additions and 3 deletions
|
@ -21,15 +21,15 @@
|
||||||
|
|
||||||
<table class="ui table">
|
<table class="ui table">
|
||||||
<thead>
|
<thead>
|
||||||
|
<th>{% trans %}Login{% endtrans %}</th>
|
||||||
<th>{% trans %}Name{% endtrans %}</th>
|
<th>{% trans %}Name{% endtrans %}</th>
|
||||||
<th>{% trans %}Email{% endtrans %}</th>
|
<th>{% trans %}Email{% endtrans %}</th>
|
||||||
<th>{% trans %}Phone number{% endtrans %}</th>
|
|
||||||
</thead>
|
</thead>
|
||||||
{% for user in users %}
|
{% for user in users %}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="{{ url_for('account.profile_edition', username=user.uid[0]) }}">{{ user.name }}</a></td>
|
<td><a href="{{ url_for('account.profile_edition', username=user.uid[0]) }}">{{ user.uid[0] }}</a></td>
|
||||||
|
<td>{{ user.name }}</td>
|
||||||
<td><a href="mailto:{{ user.mail[0] }}">{{ user.mail[0] }}</a></td>
|
<td><a href="mailto:{{ user.mail[0] }}">{{ user.mail[0] }}</a></td>
|
||||||
<td>{{ user.telephoneNumber[0] }}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Reference in a new issue