New: Show number of users in groups
This commit is contained in:
parent
76fffce112
commit
fc874dfdda
@ -110,3 +110,4 @@ LoginToCreate=Login to create
|
|||||||
NameToCreate=Name of third party to create
|
NameToCreate=Name of third party to create
|
||||||
YourRole=Your roles
|
YourRole=Your roles
|
||||||
YourQuotaOfUsersIsReached=Your quota of active users is reached !
|
YourQuotaOfUsersIsReached=Your quota of active users is reached !
|
||||||
|
NbOfUsers=Nb of users
|
||||||
@ -110,3 +110,4 @@ LoginToCreate=Login à créer
|
|||||||
NameToCreate=Nom du tiers à créer
|
NameToCreate=Nom du tiers à créer
|
||||||
YourRole=Vos rôles
|
YourRole=Vos rôles
|
||||||
YourQuotaOfUsersIsReached=Votre quota d'utilisateurs actifs est atteint !
|
YourQuotaOfUsersIsReached=Votre quota d'utilisateurs actifs est atteint !
|
||||||
|
NbOfUsers=Nb d'utilisateurs
|
||||||
@ -78,7 +78,7 @@ if ($resql)
|
|||||||
print "<table class=\"noborder\" width=\"100%\">";
|
print "<table class=\"noborder\" width=\"100%\">";
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print_liste_field_titre($langs->trans("Group"),$_SERVER["PHP_SELF"],"g.nom",$param,"","",$sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("Group"),$_SERVER["PHP_SELF"],"g.nom",$param,"","",$sortfield,$sortorder);
|
||||||
print_liste_field_titre($langs->trans("NbOfUsers"),$_SERVER["PHP_SELF"],"g.nb",$param,"","",$sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("NbOfUsers"),$_SERVER["PHP_SELF"],"g.nb",$param,"",'align="center"',$sortfield,$sortorder);
|
||||||
print_liste_field_titre($langs->trans("DateCreation"),$_SERVER["PHP_SELF"],"g.datec",$param,"","",$sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("DateCreation"),$_SERVER["PHP_SELF"],"g.datec",$param,"","",$sortfield,$sortorder);
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
$var=True;
|
$var=True;
|
||||||
@ -94,7 +94,7 @@ if ($resql)
|
|||||||
print img_redstar($langs->trans("GlobalGroup"));
|
print img_redstar($langs->trans("GlobalGroup"));
|
||||||
}
|
}
|
||||||
print "</td>";
|
print "</td>";
|
||||||
print '<td>'.$obj->nb.'</td>';
|
print '<td align="center">'.$obj->nb.'</td>';
|
||||||
print '<td width="100" align="center">'.dol_print_date($db->jdate($obj->datec),"day").'</td>';
|
print '<td width="100" align="center">'.dol_print_date($db->jdate($obj->datec),"day").'</td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
$i++;
|
$i++;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user