14/05/23 - 17h
parent
e3872d5c6d
commit
615b9cad27
|
@ -462,7 +462,7 @@ function Inscription_Information(props) {
|
||||||
|
|
||||||
|
|
||||||
var employeur = ""
|
var employeur = ""
|
||||||
if( valemployeur_info ){
|
if (valemployeur_info) {
|
||||||
employeur = valemployeur_info;
|
employeur = valemployeur_info;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -523,7 +523,7 @@ function Inscription_Information(props) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
var pedagogie = "";
|
var pedagogie = "";
|
||||||
var ele = document.getElementsByName('pedagogie');
|
var ele = document.getElementsByName('pedagogie');
|
||||||
|
|
||||||
|
@ -540,7 +540,7 @@ function Inscription_Information(props) {
|
||||||
logistique = ele[i].value;
|
logistique = ele[i].value;
|
||||||
}
|
}
|
||||||
|
|
||||||
*/
|
*/
|
||||||
if (!RatingValue) {
|
if (!RatingValue) {
|
||||||
|
|
||||||
alert(" Aidez-nous à nous améliorer, donnez une appréciation globale svp. Le point N° 1. Merci d'avance")
|
alert(" Aidez-nous à nous améliorer, donnez une appréciation globale svp. Le point N° 1. Merci d'avance")
|
||||||
|
@ -663,7 +663,7 @@ function Inscription_Information(props) {
|
||||||
|
|
||||||
</div>}
|
</div>}
|
||||||
<div className="select-container">
|
<div className="select-container">
|
||||||
<div className="titre1_aide_finance"> Je m'inscris</div>
|
<div className="titre1_aide_finance"> Je m'inscris </div>
|
||||||
<div style={{ "float": "left", "width": "40%", "textAlign": "left" }}>
|
<div style={{ "float": "left", "width": "40%", "textAlign": "left" }}>
|
||||||
Choisir une session :
|
Choisir une session :
|
||||||
</div>
|
</div>
|
||||||
|
@ -680,8 +680,11 @@ function Inscription_Information(props) {
|
||||||
|
|
||||||
<option value={JSON.parse(formation).formation_session_id}>
|
<option value={JSON.parse(formation).formation_session_id}>
|
||||||
|
|
||||||
|
{(JSON.parse(formation).session_ondemande) === "1" && " A la Demande - "}
|
||||||
|
{( !JSON.parse(formation).session_ondemande || JSON.parse(formation).session_ondemande === "0" ) &&
|
||||||
|
(JSON.parse(formation).date_debut).substring(0, 10)+ " au "+ (JSON.parse(formation).date_fin).substring(0, 10)}
|
||||||
|
|
||||||
{(JSON.parse(formation).date_debut).substring(0, 10)} au {(JSON.parse(formation).date_fin).substring(0, 10)} -
|
{/*(JSON.parse(formation).date_debut).substring(0, 10)} au {(JSON.parse(formation).date_fin).substring(0, 10)*/} -
|
||||||
{(JSON.parse(formation).distantiel) === "1" && " A Distance - "}
|
{(JSON.parse(formation).distantiel) === "1" && " A Distance - "}
|
||||||
{(JSON.parse(formation).presentiel) === "1" && (JSON.parse(formation).adresse) && " En Présentiel - " + (JSON.parse(formation).adresse)}
|
{(JSON.parse(formation).presentiel) === "1" && (JSON.parse(formation).adresse) && " En Présentiel - " + (JSON.parse(formation).adresse)}
|
||||||
{(JSON.parse(formation).presentiel) === "1" && (!JSON.parse(formation).adresse) && " En Présentiel - "}
|
{(JSON.parse(formation).presentiel) === "1" && (!JSON.parse(formation).adresse) && " En Présentiel - "}
|
||||||
|
|
Loading…
Reference in New Issue