Skip to content
Snippets Groups Projects
Commit ddea186a authored by Emmanuel Viennet's avatar Emmanuel Viennet
Browse files

Table recap: bouton cols 'Vides' seulement si il y en a.

parent d55e393c
No related branches found
No related tags found
No related merge requests found
......@@ -159,6 +159,8 @@ class ResultatsSemestreBUT(NotesTableCompat):
# moyenne sur les UE:
if len(self.sem_cube[etud_idx, mod_idx]):
return np.nanmean(self.sem_cube[etud_idx, mod_idx])
# note: si toutes les valeurs sont nan, on va déclencher ici
# un RuntimeWarning: Mean of empty slice
return np.nan
def compute_etud_ue_coef(self, etudid: int, ue: UniteEns) -> float:
......
......@@ -146,10 +146,13 @@ $(function () {
action: toggle_col_but_visibility,
});
}
// S'il y a des colonnes vides:
if ($('table.table_recap td.col_empty').length > 0) {
buttons.push({ // modules vides
text: '<span data-group="col_empty">Vides</span>',
action: toggle_col_but_visibility,
});
}
// Boutons admission (pas en jury)
if (!$('table.table_recap').hasClass("jury")) {
buttons.push(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment