summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-gui/ipagui/templates/userlist.kid
diff options
context:
space:
mode:
Diffstat (limited to 'ipa-server/ipa-gui/ipagui/templates/userlist.kid')
-rw-r--r--ipa-server/ipa-gui/ipagui/templates/userlist.kid20
1 files changed, 5 insertions, 15 deletions
diff --git a/ipa-server/ipa-gui/ipagui/templates/userlist.kid b/ipa-server/ipa-gui/ipagui/templates/userlist.kid
index be73c67f2..c78199efd 100644
--- a/ipa-server/ipa-gui/ipagui/templates/userlist.kid
+++ b/ipa-server/ipa-gui/ipagui/templates/userlist.kid
@@ -8,7 +8,7 @@
<body>
<script type="text/javascript" charset="utf-8" src="${tg.url('/static/javascript/tablekit.js')}"></script>
<div id="search">
- <form action="${tg.url('/userlist')}" method="post">
+ <form action="${tg.url('/userlist')}" method="get">
<input id="uid" type="text" name="uid" value="${uid}" />
<input type="submit" value="Find People"/>
</form>
@@ -22,10 +22,7 @@
<thead>
<tr>
<th>
- ${fields.uid.label}
- </th>
- <th>
- Name
+ Person
</th>
<th>
Phone
@@ -36,18 +33,14 @@
<th>
Title
</th>
- <th>
- License Plate
- </th>
</tr>
</thead>
<tbody>
<tr py:for="user in users">
<td>
- <a href="${tg.url('/usershow',uid=user.uid)}">${user.uid}</a>
- </td>
- <td>
- ${user.givenName} ${user.sn}
+ <a href="${tg.url('/usershow',uid=user.uid)}"
+ >${user.givenName} ${user.sn}</a>
+ (${user.uid})
</td>
<td>
${user.telephoneNumber}
@@ -58,9 +51,6 @@
<td>
${user.title}
</td>
- <td>
- ${user.carLicense}
- </td>
</tr>
</tbody>
</table>