forked from ScoDoc/ScoDoc
Table jury BUT: pas de colonnes rangs et admissions
This commit is contained in:
parent
dcee2a441f
commit
00f66be1c5
@ -86,7 +86,7 @@ def build_table_jury_but_html(
|
||||
"""assemble la table html"""
|
||||
footer_rows = [] # inutile pour l'instant, à voir XXX
|
||||
H = [
|
||||
f"""<div class="table_recap"><table class="table_recap apc jury"
|
||||
f"""<div class="table_recap"><table class="table_recap apc jury table_jury_but"
|
||||
data-filename="{filename}">"""
|
||||
]
|
||||
# header
|
||||
|
@ -22,6 +22,10 @@ $(function () {
|
||||
dt.buttons('toggle_partitions:name').text(visible ? "Montrer groupes" : "Cacher les groupes");
|
||||
}
|
||||
},
|
||||
];
|
||||
// Bouton "rangs groupes", sauf pour table jury BUT
|
||||
if (!$('table.table_recap').hasClass("table_jury_but")) {
|
||||
buttons.push(
|
||||
{
|
||||
name: "toggle_partitions_rangs",
|
||||
text: "Rangs groupes",
|
||||
@ -30,8 +34,9 @@ $(function () {
|
||||
dt.columns(".partition_rangs").visible(!rangs_visible);
|
||||
dt.buttons('toggle_partitions_rangs:name').text(rangs_visible ? "Rangs groupes" : "Cacher rangs groupes");
|
||||
}
|
||||
},
|
||||
];
|
||||
});
|
||||
}
|
||||
|
||||
if (!$('table.table_recap').hasClass("jury")) {
|
||||
buttons.push(
|
||||
$('table.table_recap').hasClass("apc") ?
|
||||
@ -80,6 +85,8 @@ $(function () {
|
||||
}
|
||||
})
|
||||
}
|
||||
// Boutons admission, sauf pour table jury BUT
|
||||
if (!$('table.table_recap').hasClass("table_jury_but")) {
|
||||
buttons.push({
|
||||
name: "toggle_admission",
|
||||
text: "Montrer infos admission",
|
||||
@ -88,7 +95,8 @@ $(function () {
|
||||
dt.columns(".admission").visible(!visible);
|
||||
dt.buttons('toggle_admission:name').text(visible ? "Montrer infos admission" : "Cacher infos admission");
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
$('table.table_recap').DataTable(
|
||||
{
|
||||
paging: false,
|
||||
|
Loading…
Reference in New Issue
Block a user