Table recap. évaluations: cosmetic

This commit is contained in:
Emmanuel Viennet 2022-04-12 17:27:52 +02:00
parent 7e5ccfb2d8
commit c4b45e11b3
2 changed files with 16 additions and 4 deletions

View File

@ -53,7 +53,11 @@ def evaluations_recap(formsemestre_id: int) -> str:
for row in rows:
H.append(f"{scu.gen_row(column_ids, row, with_col_classes=True)}\n")
H.append("""</tbody></table></div>""")
H.append(
"""</tbody></table></div>
<div class="help">Les étudiants démissionnaires ou défaillants ne sont pas pris en compte dans cette table.</div>
"""
)
H.append(
html_sco_header.sco_footer(),
)

View File

@ -1013,12 +1013,12 @@ span.wtf-field ul.errors li {
display: inline-block;
}
.configuration_logo details > *:not(summary) {
.configuration_logo details>*:not(summary) {
margin-left: 32px;
}
.configuration_logo .content {
display : grid;
display: grid;
grid-template-columns: auto auto 1fr;
}
@ -1038,7 +1038,7 @@ span.wtf-field ul.errors li {
.configuration_logo .actions_logo {
grid-column: 3/5;
display:grid;
display: grid;
grid-template-columns: auto auto;
grid-column-gap: 10px;
align-self: start;
@ -3901,4 +3901,12 @@ table.evaluations_recap tr.evaluation.incomplete td a {
table.evaluations_recap tr.evaluation.incomplete td a.incomplete {
font-weight: bold;
}
table.evaluations_recap td.inscrits,
table.evaluations_recap td.manquantes,
table.evaluations_recap td.nb_abs,
table.evaluations_recap td.nb_att,
table.evaluations_recap td.nb_exc {
text-align: center;
}