mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-15 19:01:55 -06:00
Use % format string to fix nbsp problem in userlist.kid (fixes #453779)
This commit is contained in:
parent
6efb547987
commit
4deb919ce4
@ -56,9 +56,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr py:for="user in users" py:if="user.nsAccountLock != 'true'">
|
<tr py:for="user in users" py:if="user.nsAccountLock != 'true'">
|
||||||
<td>
|
<td>
|
||||||
<a href="${tg.url('/user/show',uid=user.uid)}"
|
<a
|
||||||
>${user.givenName} ${user.sn}</a>
|
href="${tg.url('/user/show',uid=user.uid)}"
|
||||||
(${user.uid})
|
py:content="u'%s %s (%s)' % (user.givenName, user.sn, user.uid)"
|
||||||
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
${user.telephoneNumber}
|
${user.telephoneNumber}
|
||||||
@ -74,9 +75,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr id="inactive" py:for="user in users" py:if="user.nsAccountLock == 'true'">
|
<tr id="inactive" py:for="user in users" py:if="user.nsAccountLock == 'true'">
|
||||||
<td>
|
<td>
|
||||||
<a href="${tg.url('/user/show',uid=user.uid)}"
|
<a
|
||||||
>${user.givenName} ${user.sn}</a>
|
href="${tg.url('/user/show',uid=user.uid)}"
|
||||||
(${user.uid})
|
py:content="u'%s %s (%s)' % (user.givenName, user.sn, user.uid)"
|
||||||
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
${user.telephoneNumber}
|
${user.telephoneNumber}
|
||||||
|
Loading…
Reference in New Issue
Block a user