diff --git a/app/scodoc/sco_cursus_dut.py b/app/scodoc/sco_cursus_dut.py
index e3bbe0f67..f19fa00f3 100644
--- a/app/scodoc/sco_cursus_dut.py
+++ b/app/scodoc/sco_cursus_dut.py
@@ -987,7 +987,7 @@ def formsemestre_has_decisions(formsemestre_id):
"""
cnx = ndb.GetDBConnexion()
validations = scolar_formsemestre_validation_list(
- cnx, args={"formsemestre_id": formsemestre_id}
+ cnx, args={"formsemestre_id": formsemestre_id, "is_external": False}
)
return len(validations) > 0
diff --git a/app/scodoc/sco_moduleimpl_status.py b/app/scodoc/sco_moduleimpl_status.py
index b68726391..b6e358168 100644
--- a/app/scodoc/sco_moduleimpl_status.py
+++ b/app/scodoc/sco_moduleimpl_status.py
@@ -163,7 +163,7 @@ def _ue_coefs_html(coefs_lst) -> str:
"""
+ "\n".join(
[
- f"""
"""
for ue, coef in coefs_lst
@@ -363,8 +363,8 @@ def moduleimpl_status(moduleimpl_id=None, partition_id=None):
if formsemestre_has_decisions(formsemestre_id):
H.append(
"""
- - Décisions de jury saisies: seul le responsable du
- semestre peut saisir des notes (il devra modifier les décisions de jury).
+
- Décisions de jury saisies: seul le ou la responsable du
+ semestre peut saisir des notes (elle devra modifier les décisions de jury).
"""
)
@@ -419,7 +419,7 @@ def moduleimpl_status(moduleimpl_id=None, partition_id=None):
if nb_evaluations > 0:
top_table_links += f"""
Trier par date
"""
diff --git a/sco_version.py b/sco_version.py
index e8ed7d5f8..5be4f7743 100644
--- a/sco_version.py
+++ b/sco_version.py
@@ -1,7 +1,7 @@
# -*- mode: python -*-
# -*- coding: utf-8 -*-
-SCOVERSION = "9.6.54"
+SCOVERSION = "9.6.55"
SCONAME = "ScoDoc"