forked from ScoDoc/ScoDoc
Relevé version Web Component
This commit is contained in:
parent
0b03b0c188
commit
3346eded05
237
app/static/css/releve-but.css
Normal file
237
app/static/css/releve-but.css
Normal file
@ -0,0 +1,237 @@
|
|||||||
|
/* Bulletin BUT, Seb. L. 2021-12-06 */
|
||||||
|
/*******************/
|
||||||
|
/* Styles généraux */
|
||||||
|
/*******************/
|
||||||
|
.wait{
|
||||||
|
width: 60px;
|
||||||
|
height: 6px;
|
||||||
|
margin: auto;
|
||||||
|
background: #424242; /* la réponse à tout */
|
||||||
|
animation: wait .4s infinite alternate;
|
||||||
|
}
|
||||||
|
@keyframes wait{
|
||||||
|
100%{transform: translateY(40px) rotate(1turn);}
|
||||||
|
}
|
||||||
|
main{
|
||||||
|
--couleurPrincipale: rgb(240,250,255);
|
||||||
|
--couleurFondTitresUE: rgb(206,255,235);
|
||||||
|
--couleurFondTitresRes: rgb(125, 170, 255);
|
||||||
|
--couleurFondTitresSAE: rgb(255, 190, 69);
|
||||||
|
--couleurSecondaire: #fec;
|
||||||
|
--couleurIntense: #c09;
|
||||||
|
--couleurSurlignage: rgba(232, 255, 132, 0.47);
|
||||||
|
max-width: 1000px;
|
||||||
|
margin: auto;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ready .wait{display: none;}
|
||||||
|
.ready main{display: block;}
|
||||||
|
h2{
|
||||||
|
margin: 0;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
section{
|
||||||
|
background: #FFF;
|
||||||
|
border-radius: 16px;
|
||||||
|
border: 1px solid #AAA;
|
||||||
|
padding: 16px 32px;
|
||||||
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
section>div:nth-child(1){
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
.CTA_Liste{
|
||||||
|
display: flex;
|
||||||
|
gap: 4px;
|
||||||
|
align-items: center;
|
||||||
|
background: var(--couleurIntense);
|
||||||
|
color: #FFF;
|
||||||
|
padding: 4px 8px;
|
||||||
|
border-radius: 4px;
|
||||||
|
box-shadow: 0 2px 2px rgba(0,0,0,0.26);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.CTA_Liste>svg{
|
||||||
|
transition: 0.2s;
|
||||||
|
}
|
||||||
|
.CTA_Liste:hover{
|
||||||
|
outline: 2px solid #424242;
|
||||||
|
}
|
||||||
|
.listeOff svg{
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
.listeOff .syntheseModule,
|
||||||
|
.listeOff .eval{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************/
|
||||||
|
/* Options d'affichage */
|
||||||
|
/***********************/
|
||||||
|
.hide_abs .absences,
|
||||||
|
.hide_abs_modules .module>.absences,
|
||||||
|
.hide_coef .synthese em,
|
||||||
|
.hide_coef .eval>em,
|
||||||
|
.hide_date_inscr .dateInscription,
|
||||||
|
.hide_ects .ects{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/************/
|
||||||
|
/* Etudiant */
|
||||||
|
/************/
|
||||||
|
.etudiant{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 16px;
|
||||||
|
border-color: var(--couleurPrincipale);
|
||||||
|
background: var(--couleurPrincipale);
|
||||||
|
color: rgb(0, 0, 0);
|
||||||
|
}
|
||||||
|
.civilite{
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 130%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/************/
|
||||||
|
/* Semestre */
|
||||||
|
/************/
|
||||||
|
.infoSemestre{
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 4px;
|
||||||
|
}
|
||||||
|
.infoSemestre>div{
|
||||||
|
border: 1px solid var(--couleurIntense);
|
||||||
|
padding: 4px 8px;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto auto;
|
||||||
|
column-gap: 4px;
|
||||||
|
}
|
||||||
|
.infoSemestre>div:nth-child(1){
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
.infoSemestre>div>div:nth-child(even){
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.rang{
|
||||||
|
text-decoration: underline var(--couleurIntense);
|
||||||
|
}
|
||||||
|
|
||||||
|
.enteteSemestre{
|
||||||
|
color: black;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 20px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************/
|
||||||
|
/* Synthèse */
|
||||||
|
/***************/
|
||||||
|
.synthese>.ue{
|
||||||
|
background: var(--couleurFondTitresUE);
|
||||||
|
}
|
||||||
|
.synthese h3{
|
||||||
|
background: var(--couleurFondTitresUE);
|
||||||
|
}
|
||||||
|
.synthese em,
|
||||||
|
.eval em{
|
||||||
|
opacity: 0.6;
|
||||||
|
width: 70px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************/
|
||||||
|
/* Evaluations */
|
||||||
|
/***************/
|
||||||
|
.module, .ue {
|
||||||
|
background: var(--couleurSecondaire);
|
||||||
|
color: #000;
|
||||||
|
padding: 4px 32px;
|
||||||
|
border-radius: 4px;
|
||||||
|
display: flex;
|
||||||
|
gap: 16px;
|
||||||
|
margin: 4px 0 2px 0;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
h3{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin: 0 auto 0 0;
|
||||||
|
position: sticky;
|
||||||
|
left: -32px;
|
||||||
|
z-index: 1;
|
||||||
|
font-size: 16px;
|
||||||
|
background: var(--couleurSecondaire);
|
||||||
|
}
|
||||||
|
.sae .module, .sae h3{
|
||||||
|
background: var(--couleurFondTitresSAE);
|
||||||
|
}
|
||||||
|
|
||||||
|
.moyenne{
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.info{
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
.eval, .syntheseModule{
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0 28px;
|
||||||
|
padding: 0px 4px;
|
||||||
|
border-bottom: 1px solid #aaa;
|
||||||
|
}
|
||||||
|
.eval:hover, .syntheseModule:hover{
|
||||||
|
background: var(--couleurSurlignage);
|
||||||
|
/* color: #FFF; */
|
||||||
|
}
|
||||||
|
.complement{
|
||||||
|
pointer-events:none;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 100%;
|
||||||
|
right: 0;
|
||||||
|
padding: 8px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: #FFF;
|
||||||
|
color: #000;
|
||||||
|
border: 1px solid var(--couleurIntense);
|
||||||
|
opacity: 0;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto auto;
|
||||||
|
column-gap: 4px;
|
||||||
|
}
|
||||||
|
.eval:hover .complement{
|
||||||
|
opacity: 1;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.complement>div:nth-child(even){
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.complement>div:nth-child(1),
|
||||||
|
.complement>div:nth-child(2){
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.complement>div:nth-child(1),
|
||||||
|
.complement>div:nth-child(7){
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.absences{
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto auto;
|
||||||
|
column-gap: 4px;
|
||||||
|
text-align: right;
|
||||||
|
border-left: 1px solid;
|
||||||
|
padding-left: 16px;
|
||||||
|
}
|
||||||
|
.absences>div:nth-child(1),
|
||||||
|
.absences>div:nth-child(2){
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
329
app/static/js/releve-but.js
Normal file
329
app/static/js/releve-but.js
Normal file
@ -0,0 +1,329 @@
|
|||||||
|
class releveBUT extends HTMLElement {
|
||||||
|
constructor(){
|
||||||
|
super();
|
||||||
|
this.shadow = this.attachShadow({mode: 'open'});
|
||||||
|
|
||||||
|
/* Config par defaut */
|
||||||
|
this.config = {
|
||||||
|
showURL: true
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Template du module */
|
||||||
|
this.shadow.innerHTML = this.template();
|
||||||
|
|
||||||
|
/* Style du module */
|
||||||
|
const styles = document.createElement('link');
|
||||||
|
styles.setAttribute('rel', 'stylesheet');
|
||||||
|
styles.setAttribute('href', '/ScoDoc/static/css/releve-but.css');
|
||||||
|
this.shadow.appendChild(styles);
|
||||||
|
|
||||||
|
this.shadow.querySelectorAll(".CTA_Liste").forEach(e => {
|
||||||
|
e.addEventListener("click", this.listeOnOff)
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
listeOnOff() {
|
||||||
|
this.parentElement.parentElement.classList.toggle("listeOff")
|
||||||
|
}
|
||||||
|
|
||||||
|
set setConfig(config){
|
||||||
|
this.config.showURL = config.showURL ?? this.config.showURL;
|
||||||
|
}
|
||||||
|
|
||||||
|
set showData(data) {
|
||||||
|
this.showInformations(data);
|
||||||
|
this.showSemestre(data);
|
||||||
|
this.showSynthese(data);
|
||||||
|
this.showEvaluations(data);
|
||||||
|
|
||||||
|
this.setOptions(data.options);
|
||||||
|
|
||||||
|
this.shadow.children[0].classList.add("ready");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template(){
|
||||||
|
return `
|
||||||
|
<div>
|
||||||
|
<div class="wait"></div>
|
||||||
|
<main class="releve">
|
||||||
|
<!--------------------------->
|
||||||
|
<!-- Info. étudiant -->
|
||||||
|
<!--------------------------->
|
||||||
|
<section class=etudiant>
|
||||||
|
<img class=studentPic src="" alt="Photo de l'étudiant" width=100 height=120>
|
||||||
|
<div class=infoEtudiant></div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!--------------------------->
|
||||||
|
<!-- Semestre -->
|
||||||
|
<!--------------------------->
|
||||||
|
<section>
|
||||||
|
<h2>Semestre </h2>
|
||||||
|
<div class=dateInscription>Inscrit le </div>
|
||||||
|
<em>Les moyennes servent à situer l'étudiant dans la promotion et ne correspondent pas à des validations de
|
||||||
|
compétences ou d'UE.</em>
|
||||||
|
<div class=infoSemestre></div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!--------------------------->
|
||||||
|
<!-- Synthèse -->
|
||||||
|
<!--------------------------->
|
||||||
|
<section>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2>Synthèse</h2>
|
||||||
|
<em>La moyenne des ressources dans une UE dépend des poids donnés aux évaluations.</em>
|
||||||
|
</div>
|
||||||
|
<div class=CTA_Liste>
|
||||||
|
Liste <svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none"
|
||||||
|
stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path d="M18 15l-6-6-6 6" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class=synthese></div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!--------------------------->
|
||||||
|
<!-- Evaluations -->
|
||||||
|
<!--------------------------->
|
||||||
|
<section>
|
||||||
|
<div>
|
||||||
|
<h2>Ressources</h2>
|
||||||
|
<div class=CTA_Liste>
|
||||||
|
Liste <svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none"
|
||||||
|
stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path d="M18 15l-6-6-6 6" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class=evaluations></div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<div>
|
||||||
|
<h2>SAÉ</h2>
|
||||||
|
<div class=CTA_Liste>
|
||||||
|
Liste <svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none"
|
||||||
|
stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path d="M18 15l-6-6-6 6" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class=sae></div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
</div>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/********************************/
|
||||||
|
/* Informations sur l'étudiant */
|
||||||
|
/********************************/
|
||||||
|
showInformations(data) {
|
||||||
|
this.shadow.querySelector(".studentPic").src = data.etudiant.photo_url || "default_Student.svg";
|
||||||
|
|
||||||
|
let output = `
|
||||||
|
<div class=info_etudiant>
|
||||||
|
<div class=civilite>
|
||||||
|
${this.civilite(data.etudiant.civilite)}
|
||||||
|
${data.etudiant.nom}
|
||||||
|
${data.etudiant.prenom}`;
|
||||||
|
|
||||||
|
if (data.etudiant.date_naissance) {
|
||||||
|
output += ` né${(data.etudiant.civilite == "F") ? "e" : ""} le ${this.ISOToDate(data.etudiant.date_naissance)}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
output += `
|
||||||
|
</div>
|
||||||
|
<div class=numerosEtudiant>
|
||||||
|
Numéro étudiant : ${data.etudiant.code_nip} -
|
||||||
|
Code INE : ${data.etudiant.code_ine}
|
||||||
|
</div>
|
||||||
|
<div>${data.formation.titre}</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
|
this.shadow.querySelector(".infoEtudiant").innerHTML = output;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************************/
|
||||||
|
/* Information sur le semestre */
|
||||||
|
/*******************************/
|
||||||
|
showSemestre(data) {
|
||||||
|
this.shadow.querySelector("h2").innerHTML += data.semestre.numero;
|
||||||
|
this.shadow.querySelector(".dateInscription").innerHTML += this.ISOToDate(data.semestre.inscription);
|
||||||
|
let output = `
|
||||||
|
<div>
|
||||||
|
<div class=enteteSemestre>Moyenne</div><div class=enteteSemestre>${data.semestre.notes.value}</div>
|
||||||
|
<div class=rang>Rang :</div><div class=rang>${data.semestre.rang.value} / ${data.semestre.rang.total}</div>
|
||||||
|
<div>Max. promo. :</div><div>${data.semestre.notes.max}</div>
|
||||||
|
<div>Moy. promo. :</div><div>${data.semestre.notes.moy}</div>
|
||||||
|
<div>Min. promo. :</div><div>${data.semestre.notes.min}</div>
|
||||||
|
</div>
|
||||||
|
${data.semestre.groupes.map(groupe => {
|
||||||
|
return `
|
||||||
|
<div>
|
||||||
|
<div class=enteteSemestre>Groupe</div><div class=enteteSemestre>${groupe.nom}</div>
|
||||||
|
<div class=rang>Rang :</div><div class=rang>${groupe.rang.value} / ${groupe.rang.total}</div>
|
||||||
|
<div>Max. groupe :</div><div>${groupe.notes.max}</div>
|
||||||
|
<div>Moy. groupe :</div><div>${groupe.notes.min}</div>
|
||||||
|
<div>Min. groupe :</div><div>${groupe.notes.min}</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}).join("")
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
this.shadow.querySelector(".infoSemestre").innerHTML = output;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************************/
|
||||||
|
/* Synthèse */
|
||||||
|
/*******************************/
|
||||||
|
showSynthese(data) {
|
||||||
|
let output = ``;
|
||||||
|
Object.entries(data.ues).forEach(([ue, dataUE]) => {
|
||||||
|
output += `
|
||||||
|
<div class=ue>
|
||||||
|
<h3>
|
||||||
|
${(dataUE.competence) ? dataUE.competence + " - " : ""}${ue}
|
||||||
|
</h3>
|
||||||
|
<div>
|
||||||
|
<div class=moyenne>Moyenne : ${dataUE.moyenne?.value || "-"}</div>
|
||||||
|
<div class=info>
|
||||||
|
Bonus : ${dataUE.bonus || 0} -
|
||||||
|
Malus : ${dataUE.malus || 0}
|
||||||
|
<span class=ects> -
|
||||||
|
ECTS : ${dataUE.ECTS.acquis} / ${dataUE.ECTS.total}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class=absences>
|
||||||
|
<div>Abs N.J.</div><div>${dataUE.absences?.injustifie || 0}</div>
|
||||||
|
<div>Total</div><div>${dataUE.absences?.total || 0}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
${this.synthese(data, dataUE.ressources)}
|
||||||
|
${this.synthese(data, dataUE.saes)}
|
||||||
|
`;
|
||||||
|
});
|
||||||
|
this.shadow.querySelector(".synthese").innerHTML = output;
|
||||||
|
}
|
||||||
|
synthese(data, modules) {
|
||||||
|
let output = "";
|
||||||
|
Object.entries(modules).forEach(([module, dataModule]) => {
|
||||||
|
let titre = data.ressources[module]?.titre || data.saes[module]?.titre;
|
||||||
|
let url = data.ressources[module]?.url || data.saes[module]?.url;
|
||||||
|
output += `
|
||||||
|
<div class=syntheseModule>
|
||||||
|
<div>${this.URL(url, `${module} - ${titre}`)}</div>
|
||||||
|
<div>
|
||||||
|
${dataModule.moyenne}
|
||||||
|
<em>Coef. ${dataModule.coef}</em>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
})
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*******************************/
|
||||||
|
/* Evaluations */
|
||||||
|
/*******************************/
|
||||||
|
showEvaluations(data) {
|
||||||
|
this.shadow.querySelector(".evaluations").innerHTML = this.module(data.ressources);
|
||||||
|
this.shadow.querySelector(".sae").innerHTML += this.module(data.saes);
|
||||||
|
}
|
||||||
|
module(module) {
|
||||||
|
let output = "";
|
||||||
|
Object.entries(module).forEach(([numero, content]) => {
|
||||||
|
output += `
|
||||||
|
<div>
|
||||||
|
<div class=module>
|
||||||
|
<h3>${this.URL(content.url, `${numero} - ${content.titre}`)}</h3>
|
||||||
|
<div>
|
||||||
|
<div class=moyenne>Moyenne indicative : ${content.moyenne.value}</div>
|
||||||
|
<div class=info>
|
||||||
|
Classe : ${content.moyenne.moy} -
|
||||||
|
Max : ${content.moyenne.max} -
|
||||||
|
Min : ${content.moyenne.min}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class=absences>
|
||||||
|
<div>Abs inj.</div><div>${content.absences?.injustifie || 0}</div>
|
||||||
|
<div>Total</div><div>${content.absences?.total || 0}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
${this.evaluation(content.evaluations)}
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
})
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
evaluation(evaluations) {
|
||||||
|
let output = "";
|
||||||
|
evaluations.forEach((evaluation) => {
|
||||||
|
output += `
|
||||||
|
<div class=eval>
|
||||||
|
<div>${this.URL(evaluation.url, evaluation.description)}</div>
|
||||||
|
<div>
|
||||||
|
${evaluation.note.value}
|
||||||
|
<em>Coef. ${evaluation.coef}</em>
|
||||||
|
</div>
|
||||||
|
<div class=complement>
|
||||||
|
<div>Coef</div><div>${evaluation.coef}</div>
|
||||||
|
<div>Max. promo.</div><div>${evaluation.note.max}</div>
|
||||||
|
<div>Moy. promo.</div><div>${evaluation.note.moy}</div>
|
||||||
|
<div>Min. promo.</div><div>${evaluation.note.min}</div>
|
||||||
|
${Object.entries(evaluation.poids).map(([UE, poids]) => {
|
||||||
|
return `
|
||||||
|
<div>Poids ${UE}</div>
|
||||||
|
<div>${poids}</div>
|
||||||
|
`;
|
||||||
|
}).join("")}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
})
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
/********************/
|
||||||
|
/* Options */
|
||||||
|
/********************/
|
||||||
|
setOptions(options) {
|
||||||
|
Object.entries(options).forEach(([option, value]) => {
|
||||||
|
if (value === false) {
|
||||||
|
document.body.classList.add(option.replace("show", "hide"))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/********************/
|
||||||
|
/* Fonctions d'aide */
|
||||||
|
/********************/
|
||||||
|
URL(href, content){
|
||||||
|
if(this.config.showURL){
|
||||||
|
return `<a href=${href}>${content}</a>`;
|
||||||
|
} else {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
civilite(txt) {
|
||||||
|
switch (txt) {
|
||||||
|
case "M": return "M.";
|
||||||
|
case "F": return "Mme";
|
||||||
|
default: return "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ISOToDate(ISO) {
|
||||||
|
return ISO.split("-").reverse().join("/");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
customElements.define('releve-but', releveBUT);
|
@ -2,87 +2,24 @@
|
|||||||
|
|
||||||
{% block styles %}
|
{% block styles %}
|
||||||
{{super()}}
|
{{super()}}
|
||||||
<link rel="stylesheet" href="/ScoDoc/static/css/bulletin-but.css">
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
|
|
||||||
<div class="wait"></div>
|
<releve-but></releve-but>
|
||||||
<main class="releve">
|
|
||||||
<!--------------------------->
|
|
||||||
<!-- Info. étudiant -->
|
|
||||||
<!--------------------------->
|
|
||||||
<section class=etudiant>
|
|
||||||
<img class=studentPic src="" alt="Photo de l'étudiant" width=100 height=120>
|
|
||||||
<div class=infoEtudiant></div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!--------------------------->
|
|
||||||
<!-- Semestre -->
|
|
||||||
<!--------------------------->
|
|
||||||
<section>
|
|
||||||
<h2>Semestre </h2>
|
|
||||||
<div class=dateInscription>Inscrit le </div>
|
|
||||||
<em>Les moyennes servent à situer l'étudiant dans la promotion et ne correspondent pas à des validations de
|
|
||||||
compétences ou d'UE.</em>
|
|
||||||
<div class=infoSemestre></div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!--------------------------->
|
|
||||||
<!-- Synthèse -->
|
|
||||||
<!--------------------------->
|
|
||||||
<section>
|
|
||||||
<div>
|
|
||||||
<div>
|
|
||||||
<h2>Synthèse</h2>
|
|
||||||
<em>La moyenne des ressources dans une UE dépend des poids donnés aux évaluations.</em>
|
|
||||||
</div>
|
|
||||||
<div class=CTA_Liste>
|
|
||||||
Liste <svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none"
|
|
||||||
stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
||||||
<path d="M18 15l-6-6-6 6" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class=synthese></div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<!--------------------------->
|
|
||||||
<!-- Evaluations -->
|
|
||||||
<!--------------------------->
|
|
||||||
<section>
|
|
||||||
<div>
|
|
||||||
<h2>Ressources</h2>
|
|
||||||
<div class=CTA_Liste>
|
|
||||||
Liste <svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none"
|
|
||||||
stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
||||||
<path d="M18 15l-6-6-6 6" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class=evaluations></div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<div>
|
|
||||||
<h2>SAÉ</h2>
|
|
||||||
<div class=CTA_Liste>
|
|
||||||
Liste <svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" viewBox="0 0 24 24" fill="none"
|
|
||||||
stroke="#ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
||||||
<path d="M18 15l-6-6-6 6" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class=sae></div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block scripts %}
|
{% block scripts %}
|
||||||
{{ super() }}
|
{{ super() }}
|
||||||
|
|
||||||
|
<script src="/ScoDoc/static/js/releve-but.js"></script>
|
||||||
<script>
|
<script>
|
||||||
let dataSrc = "{{bul_url|safe}}";
|
let dataSrc = "{{bul_url|safe}}";
|
||||||
|
fetch(dataSrc)
|
||||||
|
.then(r => { return r.json() })
|
||||||
|
.then(json => {
|
||||||
|
document.querySelector("releve-but").showData = json;
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
<script src="/ScoDoc/static/js/bulletin-but.js"></script>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user