Update users.php
This commit is contained in:
parent
1f5308d460
commit
d40cf7bd0f
|
|
@ -174,6 +174,9 @@
|
|||
echo th_order_by('groups', $text['label-groups'], $order_by, $order, '', '', $param);
|
||||
echo th_order_by('contact_organization', $text['label-organization'], $order_by, $order, '', '', $param);
|
||||
echo th_order_by('contact_name_given', $text['label-name'], $order_by, $order, '', '', $param);
|
||||
if (permission_exists('ticket_edit')) {
|
||||
echo "<th>".$text['label-tools']."</th>\n";
|
||||
}
|
||||
echo th_order_by('user_enabled', $text['label-enabled'], $order_by, $order, '', '', $param);
|
||||
echo "<td class='list_control_icons'>";
|
||||
if (permission_exists('user_add')) {
|
||||
|
|
@ -206,8 +209,13 @@
|
|||
echo " ".$row['groups']." \n";
|
||||
echo " </td>\n";
|
||||
|
||||
echo "<td class='".$row_style[$c]."'><a href='/app/contacts/contact_edit.php?id=".$row['contact_uuid']."'>".$row['contact_organization']."</a> </td>\n";
|
||||
echo "<td class='".$row_style[$c]."'><a href='/app/contacts/contact_edit.php?id=".$row['contact_uuid']."'>".$row['contact_name_given']." ".$row['contact_name_family']."</a> </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'><a href='/app/contacts/contact_edit.php?id=".$row['contact_uuid']."'>".$row['contact_organization']."</a> </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'><a href='/app/contacts/contact_edit.php?id=".$row['contact_uuid']."'>".$row['contact_name_given']." ".$row['contact_name_family']."</a> </td>\n";
|
||||
echo " <td class='".$row_style[$c]."'>\n";
|
||||
if (permission_exists('ticket_edit')) {
|
||||
echo " <a href='/app/tickets/tickets.php?user_uuid=".$row['user_uuid']."'><span class='glyphicon glyphicon-tags' title='".$text['label-tickets']."'></span></a>\n";
|
||||
}
|
||||
echo " </td>\n";
|
||||
echo " <td valign='top' class='".$row_style[$c]."'>";
|
||||
if ($row['user_enabled'] == 'true') {
|
||||
echo $text['option-true'];
|
||||
|
|
|
|||
Loading…
Reference in New Issue