This commit is contained in:
Laurent Destailleur 2024-10-25 13:47:24 +02:00
parent 76b070fc47
commit 9a6ec3b059
4 changed files with 17 additions and 15 deletions

View File

@ -89,6 +89,7 @@ datee
# Translation keys
addin
amountin
alltime
# other
blacklists

View File

@ -154,14 +154,15 @@ if (!count($data)) {
// Print array
print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
print '<table class="liste centpercent">';
print '<table class="liste centpercent noborder">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("MemberNature").'</td>';
print '<td class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></td>';
print '<td class="right">'.$langs->trans("NbOfActiveMembers").'</td>';
print '<td class="center">'.$langs->trans("LastMemberDate").'</td>';
print '<td class="right">'.$langs->trans("NbOfSubscriptions").'</td>';
print '<td class="center">'.$langs->trans("LatestSubscriptionDate").'</td>';
print '<th>'.$langs->trans("MemberNature").'</th>';
print '<th class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></th>';
print '<th class="right">'.$langs->trans("NbOfActiveMembers").'</th>';
print '<th class="center">'.$langs->trans("LastMemberDate").'</th>';
print '<th class="right">'.$langs->trans("NbOfSubscriptions").'</th>';
print '<th class="center">'.$langs->trans("LatestSubscriptionDate").'</th>';
print '</tr>';
if (!$foundphy) {

View File

@ -309,15 +309,15 @@ if (count($arrayjs) && $mode == 'memberbycountry') {
if ($mode) {
// Print array
print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
print '<table class="liste centpercent">';
print '<table class="liste centpercent noborder">';
print '<tr class="liste_titre">';
print '<td>'.$label.'</td>';
print '<th>'.$label.'</th>';
if (isset($label2)) {
print '<td class="center">'.$label2.'</td>';
print '<th class="center">'.$label2.'</th>';
}
print '<td class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></td>';
print '<td class="center">'.$langs->trans("LastMemberDate").'</td>';
print '<td class="center">'.$langs->trans("LatestSubscriptionDate").'</td>';
print '<th class="right">'.$langs->trans("NbOfMembers").' <span class="opacitymedium">('.$langs->trans("AllTime").')</span></th>';
print '<th class="center">'.$langs->trans("LastMemberDate").'</th>';
print '<th class="center">'.$langs->trans("LatestSubscriptionDate").'</th>';
print '</tr>';
foreach ($data as $val) {

View File

@ -4290,8 +4290,8 @@ table.noborder:not(.paymenttable, .margintable) tr:last-child th:last-child {
border-bottom-right-radius: <?php echo $borderradius; ?>px;
}
table.liste tr.liste_titre_filter:first-child td:first-child,
table.liste tr.liste_titre_filter:first-child th:first-child {
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child td:first-child,
table.liste:not(.listwithfilterbefore) tr.liste_titre_filter:first-child th:first-child {
border-top-left-radius: <?php echo $borderradius; ?>px;
}
div.liste_titre_bydiv {