Merge pull request #12216 from frederic34/patch-5

css
This commit is contained in:
Laurent Destailleur 2019-10-30 03:02:24 +01:00 committed by GitHub
commit 2770f79a86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -237,6 +237,7 @@ function show_array_actions_to_do($max = 5)
{
$num = $db->num_rows($resql);
print '<div class="div-table-responsive-no-min">';
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><th colspan="2">'.$langs->trans("LastActionsToDo", $max).'</th>';
print '<th colspan="2" class="right"><a class="commonlink" href="'.DOL_URL_ROOT.'/comm/action/list.php?status=todo">'.$langs->trans("FullList").'</a></th>';
@ -292,7 +293,7 @@ function show_array_actions_to_do($max = 5)
$i++;
}
print "</table><br>";
print "</table></div><br>";
$db->free($resql);
}
@ -334,6 +335,7 @@ function show_array_last_actions_done($max = 5)
{
$num = $db->num_rows($resql);
print '<div class="div-table-responsive-no-min">';
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><th colspan="2">'.$langs->trans("LastDoneTasks", $max).'</th>';
print '<th colspan="2" class="right"><a class="commonlink" href="'.DOL_URL_ROOT.'/comm/action/list.php?status=done">'.$langs->trans("FullList").'</a></th>';
@ -380,7 +382,7 @@ function show_array_last_actions_done($max = 5)
}
// TODO Ajouter rappel pour "il y a des contrats a mettre en service"
// TODO Ajouter rappel pour "il y a des contrats qui arrivent a expiration"
print "</table><br>";
print "</table></div><br>";
$db->free($resql);
}