forked from ScoDoc/ScoDoc
Améliore signalement des sem. verrouillés sur page édition programme
This commit is contained in:
parent
8768f24387
commit
699f6419f3
@ -775,11 +775,19 @@ du programme" (menu "Semestre") si vous avez un semestre en cours);
|
||||
|
||||
# Formation APC (BUT) ?
|
||||
if is_apc:
|
||||
lock_info = (
|
||||
"""<span class="lock_info">verrouillé (voir liste des semestres utilisateurs
|
||||
en bas de page)</span>
|
||||
"""
|
||||
if locked
|
||||
else ""
|
||||
)
|
||||
H.append(
|
||||
f"""<div class="formation_apc_infos">
|
||||
<div class="ue_list_tit">Formation par compétences (BUT)
|
||||
- Semestre {_html_select_semestre_idx(formation_id, semestre_ids, semestre_idx)}
|
||||
- {_html_select_semestre_idx(formation_id, semestre_ids, semestre_idx)}
|
||||
</form>
|
||||
{lock_info}
|
||||
</div>
|
||||
"""
|
||||
)
|
||||
@ -985,7 +993,7 @@ du programme" (menu "Semestre") si vous avez un semestre en cours);
|
||||
|
||||
|
||||
def _html_select_semestre_idx(formation_id, semestre_ids, semestre_idx):
|
||||
htm = """<form method="get">Semestre:
|
||||
htm = """<form method="get">Semestre:
|
||||
<select onchange="this.form.submit()" name="semestre_idx" id="semestre_idx" >
|
||||
"""
|
||||
for i in list(semestre_ids) + ["all"]:
|
||||
|
@ -414,7 +414,7 @@ def list_synch(sem, anneeapogee=None):
|
||||
etudid = key2etudid[key]
|
||||
etuds = sco_etud.identite_list(cnx, {"etudid": etudid})
|
||||
if not etuds: # ? cela ne devrait pas arriver XXX
|
||||
log(f"XXX key2etud etudid={{etudid}}, type {{type(etudid)}}")
|
||||
log(f"XXX key2etud etudid={etudid}, type {type(etudid)}")
|
||||
etud = etuds[0]
|
||||
etud["inscrit"] = is_inscrit # checkbox state
|
||||
etud[
|
||||
|
@ -2239,7 +2239,16 @@ span.notes_module_list_buts {
|
||||
|
||||
div.ue_list_tit {
|
||||
font-weight: bold;
|
||||
margin-top: 5px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
div.ue_list_tit form {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div.ue_list_tit span.lock_info {
|
||||
color: red;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
ul.apc_ue_list {
|
||||
|
Loading…
Reference in New Issue
Block a user