diff --git a/app/static/css/assiduites.css b/app/static/css/assiduites.css
index f3d1c9d75..e93f63abb 100644
--- a/app/static/css/assiduites.css
+++ b/app/static/css/assiduites.css
@@ -315,7 +315,7 @@
padding: 20px;
border: 1px solid #888;
width: 80%;
- height: 40%;
+ height: 320px;
position: relative;
border-radius: 10px;
diff --git a/app/templates/assiduites/widgets/conflict.j2 b/app/templates/assiduites/widgets/conflict.j2
index 5642a433d..c87c3fbc2 100644
--- a/app/templates/assiduites/widgets/conflict.j2
+++ b/app/templates/assiduites/widgets/conflict.j2
@@ -129,6 +129,7 @@
+
@@ -157,6 +158,7 @@
this.deleteBtn.addEventListener('click', () => { this.deleteAssiduiteModal() });
this.editBtn.addEventListener('click', () => { this.editAssiduiteModal() });
this.splitBtn.addEventListener('click', () => { this.splitAssiduiteModal() });
+ document.querySelector("#myModal #finish").addEventListener('click', () => { this.close() })
document.querySelector('#myModal .close').addEventListener('click', () => { this.close() })
@@ -311,7 +313,7 @@
}
};
- openPromptModal("Entrée demandée", fieldSet, success, () => { }, "#37f05f");
+ openPromptModal("Séparation de l'assiduité sélectionnée", fieldSet, success, () => { }, "#23aa40");
}
/**
@@ -355,7 +357,7 @@
};
//Affichage du prompt
- openPromptModal("Entrée demandée", fieldSet, success, () => { }, "#37f05f");
+ openPromptModal("Modification de l'état de l'assiduité sélectionnée", fieldSet, success, () => { }, "#23aa40");
}
/**
diff --git a/app/templates/assiduites/widgets/prompt.j2 b/app/templates/assiduites/widgets/prompt.j2
index 991d153d2..7be61d4c0 100644
--- a/app/templates/assiduites/widgets/prompt.j2
+++ b/app/templates/assiduites/widgets/prompt.j2
@@ -149,9 +149,10 @@
}
.btnPrompt:disabled {
- opacity: 0.7;
+ color: black;
+ opacity: 0.8;
background-color: whitesmoke;
- background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(81, 81, 81, 0.61) 5px, rgba(81, 81, 81, 0.61) 10px)
+ background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(81, 81, 81, 0.337) 5px, rgba(81, 81, 81, 0.337) 10px)
}
diff --git a/app/views/assiduites.py b/app/views/assiduites.py
index eb5896bce..77bcc938b 100644
--- a/app/views/assiduites.py
+++ b/app/views/assiduites.py
@@ -935,6 +935,6 @@ def _get_etuds_dem_def(formsemestre):
json_str += template.replace("£", str(etud[0])).replace("$", etud[1])
if json_str != "{":
- json_str = json_str[:-1] + "}"
+ json_str = json_str[:-1]
- return json_str
+ return json_str + "}"