2020-09-26 16:19:37 +02:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Gestion scolarite IUT
|
|
|
|
#
|
2022-01-01 14:49:42 +01:00
|
|
|
# Copyright (c) 1999 - 2022 Emmanuel Viennet. All rights reserved.
|
2020-09-26 16:19:37 +02:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# Emmanuel Viennet emmanuel.viennet@viennet.net
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""ScoDoc ficheEtud
|
|
|
|
|
|
|
|
Fiche description d'un étudiant et de son parcours
|
|
|
|
|
|
|
|
"""
|
2021-09-27 10:20:10 +02:00
|
|
|
from flask import url_for, g, request
|
2021-09-18 13:42:19 +02:00
|
|
|
from flask_login import current_user
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2021-06-19 23:21:37 +02:00
|
|
|
import app.scodoc.sco_utils as scu
|
|
|
|
import app.scodoc.notesdb as ndb
|
2021-08-29 19:57:32 +02:00
|
|
|
from app import log
|
2021-12-26 19:15:47 +01:00
|
|
|
from app.models.etudiants import make_etud_args
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc import html_sco_header
|
|
|
|
from app.scodoc import htmlutils
|
|
|
|
from app.scodoc import sco_archives_etud
|
|
|
|
from app.scodoc import sco_bac
|
|
|
|
from app.scodoc import sco_codes_parcours
|
|
|
|
from app.scodoc import sco_formsemestre
|
|
|
|
from app.scodoc import sco_formsemestre_status
|
|
|
|
from app.scodoc import sco_groups
|
|
|
|
from app.scodoc import sco_parcours_dut
|
|
|
|
from app.scodoc import sco_permissions_check
|
|
|
|
from app.scodoc import sco_photos
|
2021-09-27 17:33:44 +02:00
|
|
|
from app.scodoc import sco_users
|
2021-06-19 23:21:37 +02:00
|
|
|
from app.scodoc import sco_report
|
|
|
|
from app.scodoc import sco_etud
|
|
|
|
from app.scodoc.sco_bulletins import etud_descr_situation_semestre
|
|
|
|
from app.scodoc.sco_exceptions import ScoValueError
|
|
|
|
from app.scodoc.sco_formsemestre_validation import formsemestre_recap_parcours_table
|
|
|
|
from app.scodoc.sco_permissions import Permission
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
2021-08-21 00:24:51 +02:00
|
|
|
def _menuScolarite(authuser, sem, etudid):
|
2020-09-26 16:19:37 +02:00
|
|
|
"""HTML pour menu "scolarite" pour un etudiant dans un semestre.
|
|
|
|
Le contenu du menu depend des droits de l'utilisateur et de l'état de l'étudiant.
|
|
|
|
"""
|
2021-08-10 12:57:38 +02:00
|
|
|
locked = not sem["etat"]
|
2020-09-26 16:19:37 +02:00
|
|
|
if locked:
|
2021-02-04 20:02:44 +01:00
|
|
|
lockicon = scu.icontag("lock32_img", title="verrouillé", border="0")
|
2020-09-26 16:19:37 +02:00
|
|
|
return lockicon # no menu
|
|
|
|
if not authuser.has_permission(
|
2021-06-19 23:21:37 +02:00
|
|
|
Permission.ScoEtudInscrit
|
2021-06-15 15:38:38 +02:00
|
|
|
) and not authuser.has_permission(Permission.ScoEtudChangeGroups):
|
2020-09-26 16:19:37 +02:00
|
|
|
return "" # no menu
|
|
|
|
ins = sem["ins"]
|
|
|
|
args = {"etudid": etudid, "formsemestre_id": ins["formsemestre_id"]}
|
|
|
|
|
|
|
|
if ins["etat"] != "D":
|
|
|
|
dem_title = "Démission"
|
2021-06-21 10:17:16 +02:00
|
|
|
dem_url = "scolar.formDem"
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
|
|
|
dem_title = "Annuler la démission"
|
2021-06-21 10:17:16 +02:00
|
|
|
dem_url = "scolar.doCancelDem"
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
# Note: seul un etudiant inscrit (I) peut devenir défaillant.
|
2021-02-03 22:00:41 +01:00
|
|
|
if ins["etat"] != sco_codes_parcours.DEF:
|
2020-09-26 16:19:37 +02:00
|
|
|
def_title = "Déclarer défaillance"
|
2021-06-21 10:17:16 +02:00
|
|
|
def_url = "scolar.formDef"
|
2021-02-03 22:00:41 +01:00
|
|
|
elif ins["etat"] == sco_codes_parcours.DEF:
|
2020-09-26 16:19:37 +02:00
|
|
|
def_title = "Annuler la défaillance"
|
2021-06-21 10:17:16 +02:00
|
|
|
def_url = "scolar.doCancelDef"
|
2020-09-26 16:19:37 +02:00
|
|
|
def_enabled = (
|
|
|
|
(ins["etat"] != "D")
|
2021-06-15 15:38:38 +02:00
|
|
|
and authuser.has_permission(Permission.ScoEtudInscrit)
|
2020-09-26 16:19:37 +02:00
|
|
|
and not locked
|
|
|
|
)
|
|
|
|
items = [
|
|
|
|
{
|
|
|
|
"title": dem_title,
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": dem_url,
|
|
|
|
"args": args,
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudInscrit)
|
2021-06-12 22:43:22 +02:00
|
|
|
and not locked,
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Validation du semestre (jury)",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "notes.formsemestre_validation_etud_form",
|
|
|
|
"args": args,
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudInscrit)
|
2021-06-12 22:43:22 +02:00
|
|
|
and not locked,
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
2021-07-05 23:53:23 +02:00
|
|
|
{
|
|
|
|
"title": def_title,
|
|
|
|
"endpoint": def_url,
|
|
|
|
"args": args,
|
|
|
|
"enabled": def_enabled,
|
|
|
|
},
|
2020-09-26 16:19:37 +02:00
|
|
|
{
|
|
|
|
"title": "Inscrire à un module optionnel (ou au sport)",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "notes.formsemestre_inscription_option",
|
|
|
|
"args": args,
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudInscrit)
|
2021-06-12 22:43:22 +02:00
|
|
|
and not locked,
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Désinscrire (en cas d'erreur)",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "notes.formsemestre_desinscription",
|
2021-07-05 23:53:23 +02:00
|
|
|
"args": args,
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudInscrit)
|
2021-06-12 22:43:22 +02:00
|
|
|
and not locked,
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Inscrire à un autre semestre",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "notes.formsemestre_inscription_with_modules_form",
|
|
|
|
"args": {"etudid": etudid},
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudInscrit),
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Enregistrer un semestre effectué ailleurs",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "notes.formsemestre_ext_create_form",
|
2021-07-05 23:53:23 +02:00
|
|
|
"args": args,
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoImplement),
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2021-01-17 22:31:28 +01:00
|
|
|
return htmlutils.make_menu(
|
|
|
|
"Scolarité", items, css_class="direction_etud", alone=True
|
|
|
|
)
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
2021-09-27 10:20:10 +02:00
|
|
|
def ficheEtud(etudid=None):
|
2020-09-26 16:19:37 +02:00
|
|
|
"fiche d'informations sur un etudiant"
|
2021-09-18 13:42:19 +02:00
|
|
|
authuser = current_user
|
2021-06-15 13:59:56 +02:00
|
|
|
cnx = ndb.GetDBConnexion()
|
2021-09-27 10:20:10 +02:00
|
|
|
if etudid:
|
2021-11-27 18:44:32 +01:00
|
|
|
try: # pour les bookmarks avec d'anciens ids...
|
|
|
|
etudid = int(etudid)
|
|
|
|
except ValueError:
|
|
|
|
raise ScoValueError("id invalide !")
|
2021-02-22 11:21:29 +01:00
|
|
|
# la sidebar est differente s'il y a ou pas un etudid
|
|
|
|
# voir html_sidebar.sidebar()
|
2021-09-27 10:20:10 +02:00
|
|
|
g.etudid = etudid
|
2021-12-26 19:15:47 +01:00
|
|
|
args = make_etud_args(etudid=etudid)
|
2021-06-19 23:21:37 +02:00
|
|
|
etuds = sco_etud.etudident_list(cnx, args)
|
2020-09-26 16:19:37 +02:00
|
|
|
if not etuds:
|
2021-09-27 10:20:10 +02:00
|
|
|
log("ficheEtud: etudid=%s request.args=%s" % (etudid, request.args))
|
2020-09-26 16:19:37 +02:00
|
|
|
raise ScoValueError("Etudiant inexistant !")
|
|
|
|
etud = etuds[0]
|
|
|
|
etudid = etud["etudid"]
|
2021-06-19 23:21:37 +02:00
|
|
|
sco_etud.fill_etuds_info([etud])
|
2020-09-26 16:19:37 +02:00
|
|
|
#
|
|
|
|
info = etud
|
2021-06-15 12:34:33 +02:00
|
|
|
info["ScoURL"] = scu.ScoURL()
|
2020-09-26 16:19:37 +02:00
|
|
|
info["authuser"] = authuser
|
|
|
|
info["info_naissance"] = info["date_naissance"]
|
|
|
|
if info["lieu_naissance"]:
|
|
|
|
info["info_naissance"] += " à " + info["lieu_naissance"]
|
|
|
|
if info["dept_naissance"]:
|
|
|
|
info["info_naissance"] += " (%s)" % info["dept_naissance"]
|
2021-09-24 12:10:53 +02:00
|
|
|
info["etudfoto"] = sco_photos.etud_photo_html(etud)
|
2020-09-26 16:19:37 +02:00
|
|
|
if (
|
|
|
|
(not info["domicile"])
|
|
|
|
and (not info["codepostaldomicile"])
|
|
|
|
and (not info["villedomicile"])
|
|
|
|
):
|
|
|
|
info["domicile"] = "<em>inconnue</em>"
|
|
|
|
if info["paysdomicile"]:
|
2021-06-19 23:21:37 +02:00
|
|
|
pays = sco_etud.format_pays(info["paysdomicile"])
|
2020-09-26 16:19:37 +02:00
|
|
|
if pays:
|
|
|
|
info["paysdomicile"] = "(%s)" % pays
|
|
|
|
else:
|
|
|
|
info["paysdomicile"] = ""
|
|
|
|
if info["telephone"] or info["telephonemobile"]:
|
|
|
|
info["telephones"] = "<br/>%s %s" % (
|
|
|
|
info["telephonestr"],
|
|
|
|
info["telephonemobilestr"],
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
info["telephones"] = ""
|
|
|
|
# e-mail:
|
|
|
|
if info["email_default"]:
|
|
|
|
info["emaillink"] = ", ".join(
|
|
|
|
[
|
|
|
|
'<a class="stdlink" href="mailto:%s">%s</a>' % (m, m)
|
|
|
|
for m in [etud["email"], etud["emailperso"]]
|
|
|
|
if m
|
|
|
|
]
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
info["emaillink"] = "<em>(pas d'adresse e-mail)</em>"
|
|
|
|
# champs dependant des permissions
|
2021-06-15 15:38:38 +02:00
|
|
|
if authuser.has_permission(Permission.ScoEtudChangeAdr):
|
2020-09-26 16:19:37 +02:00
|
|
|
info["modifadresse"] = (
|
|
|
|
'<a class="stdlink" href="formChangeCoordonnees?etudid=%s">modifier adresse</a>'
|
|
|
|
% etudid
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
info["modifadresse"] = ""
|
|
|
|
|
|
|
|
# Groupes:
|
2022-03-05 12:47:08 +01:00
|
|
|
sco_groups.etud_add_group_infos(
|
|
|
|
info, info["cursem"]["formsemestre_id"] if info["cursem"] else None
|
|
|
|
)
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
# Parcours de l'étudiant
|
|
|
|
if info["sems"]:
|
|
|
|
info["last_formsemestre_id"] = info["sems"][0]["formsemestre_id"]
|
|
|
|
else:
|
|
|
|
info["last_formsemestre_id"] = ""
|
|
|
|
sem_info = {}
|
|
|
|
for sem in info["sems"]:
|
|
|
|
if sem["ins"]["etat"] != "I":
|
2021-02-04 20:02:44 +01:00
|
|
|
descr, _ = etud_descr_situation_semestre(
|
2020-09-26 16:19:37 +02:00
|
|
|
etudid,
|
|
|
|
sem["formsemestre_id"],
|
|
|
|
info["ne"],
|
|
|
|
show_date_inscr=False,
|
|
|
|
)
|
|
|
|
grlink = '<span class="fontred">%s</span>' % descr["situation"]
|
|
|
|
else:
|
2022-03-27 10:05:12 +02:00
|
|
|
group = sco_groups.get_etud_main_group(etudid, sem["formsemestre_id"])
|
2020-09-26 16:19:37 +02:00
|
|
|
if group["partition_name"]:
|
|
|
|
gr_name = group["group_name"]
|
|
|
|
else:
|
|
|
|
gr_name = "tous"
|
|
|
|
grlink = (
|
|
|
|
'<a class="discretelink" href="groups_view?group_ids=%s" title="Liste du groupe">groupe %s</a>'
|
|
|
|
% (group["group_id"], gr_name)
|
|
|
|
)
|
|
|
|
# infos ajoutées au semestre dans le parcours (groupe, menu)
|
2021-08-21 00:24:51 +02:00
|
|
|
menu = _menuScolarite(authuser, sem, etudid)
|
2020-09-26 16:19:37 +02:00
|
|
|
if menu:
|
|
|
|
sem_info[sem["formsemestre_id"]] = (
|
|
|
|
"<table><tr><td>" + grlink + "</td><td>" + menu + "</td></tr></table>"
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
sem_info[sem["formsemestre_id"]] = grlink
|
|
|
|
|
|
|
|
if info["sems"]:
|
2021-08-19 10:28:35 +02:00
|
|
|
Se = sco_parcours_dut.SituationEtudParcours(etud, info["last_formsemestre_id"])
|
2020-09-26 16:19:37 +02:00
|
|
|
info["liste_inscriptions"] = formsemestre_recap_parcours_table(
|
|
|
|
Se,
|
|
|
|
etudid,
|
|
|
|
with_links=False,
|
|
|
|
sem_info=sem_info,
|
|
|
|
with_all_columns=False,
|
|
|
|
a_url="Notes/",
|
|
|
|
)
|
2021-09-25 15:12:13 +02:00
|
|
|
info[
|
|
|
|
"link_bul_pdf"
|
|
|
|
] = f"""<span class="link_bul_pdf"><a class="stdlink" href="{
|
|
|
|
url_for("notes.etud_bulletins_pdf", scodoc_dept=g.scodoc_dept, etudid=etudid)
|
|
|
|
}">tous les bulletins</a></span>"""
|
|
|
|
if authuser.has_permission(Permission.ScoEtudInscrit):
|
|
|
|
info[
|
|
|
|
"link_inscrire_ailleurs"
|
|
|
|
] = f"""<span class="link_bul_pdf"><a class="stdlink" href="{
|
|
|
|
url_for("notes.formsemestre_inscription_with_modules_form", scodoc_dept=g.scodoc_dept, etudid=etudid)
|
|
|
|
}">inscrire à un autre semestre</a></span>"""
|
|
|
|
else:
|
|
|
|
info["link_inscrire_ailleurs"] = ""
|
2020-09-26 16:19:37 +02:00
|
|
|
else:
|
|
|
|
# non inscrit
|
|
|
|
l = ["<p><b>Etudiant%s non inscrit%s" % (info["ne"], info["ne"])]
|
2021-06-15 15:38:38 +02:00
|
|
|
if authuser.has_permission(Permission.ScoEtudInscrit):
|
2020-09-26 16:19:37 +02:00
|
|
|
l.append(
|
|
|
|
'<a href="%s/Notes/formsemestre_inscription_with_modules_form?etudid=%s">inscrire</a></li>'
|
2021-06-15 12:34:33 +02:00
|
|
|
% (scu.ScoURL(), etudid)
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
l.append("</b></b>")
|
|
|
|
info["liste_inscriptions"] = "\n".join(l)
|
|
|
|
info["link_bul_pdf"] = ""
|
2021-09-25 15:12:38 +02:00
|
|
|
info["link_inscrire_ailleurs"] = ""
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
# Liste des annotations
|
|
|
|
alist = []
|
2021-06-19 23:21:37 +02:00
|
|
|
annos = sco_etud.etud_annotations_list(cnx, args={"etudid": etudid})
|
2020-09-26 16:19:37 +02:00
|
|
|
for a in annos:
|
2021-07-29 16:31:15 +02:00
|
|
|
if not sco_permissions_check.can_suppress_annotation(a["id"]):
|
2020-09-26 16:19:37 +02:00
|
|
|
a["dellink"] = ""
|
|
|
|
else:
|
2021-01-01 18:40:47 +01:00
|
|
|
a[
|
|
|
|
"dellink"
|
2021-05-11 11:48:32 +02:00
|
|
|
] = '<td class="annodel"><a href="doSuppressAnnotation?etudid=%s&annotation_id=%s">%s</a></td>' % (
|
2021-01-01 18:40:47 +01:00
|
|
|
etudid,
|
|
|
|
a["id"],
|
2021-02-04 20:02:44 +01:00
|
|
|
scu.icontag(
|
2021-01-01 18:40:47 +01:00
|
|
|
"delete_img",
|
|
|
|
border="0",
|
|
|
|
alt="suppress",
|
|
|
|
title="Supprimer cette annotation",
|
|
|
|
),
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
2021-09-27 17:33:44 +02:00
|
|
|
author = sco_users.user_info(a["author"])
|
2020-09-26 16:19:37 +02:00
|
|
|
alist.append(
|
2021-09-27 17:33:44 +02:00
|
|
|
f"""<tr><td><span class="annodate">Le {a['date']} par {author['prenomnom']} :
|
|
|
|
</span><span class="annoc">{a['comment']}</span></td>{a['dellink']}</tr>
|
|
|
|
"""
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
info["liste_annotations"] = "\n".join(alist)
|
|
|
|
# fiche admission
|
|
|
|
has_adm_notes = (
|
|
|
|
info["math"] or info["physique"] or info["anglais"] or info["francais"]
|
|
|
|
)
|
|
|
|
has_bac_info = (
|
|
|
|
info["bac"]
|
|
|
|
or info["specialite"]
|
|
|
|
or info["annee_bac"]
|
|
|
|
or info["rapporteur"]
|
|
|
|
or info["commentaire"]
|
|
|
|
or info["classement"]
|
|
|
|
or info["type_admission"]
|
|
|
|
)
|
|
|
|
if has_bac_info or has_adm_notes:
|
|
|
|
adm_tmpl = """<!-- Donnees admission -->
|
|
|
|
<div class="fichetitre">Informations admission</div>
|
|
|
|
"""
|
|
|
|
if has_adm_notes:
|
|
|
|
adm_tmpl += """
|
|
|
|
<table>
|
|
|
|
<tr><th>Bac</th><th>Année</th><th>Rg</th>
|
|
|
|
<th>Math</th><th>Physique</th><th>Anglais</th><th>Français</th></tr>
|
|
|
|
<tr>
|
|
|
|
<td>%(bac)s (%(specialite)s)</td>
|
|
|
|
<td>%(annee_bac)s </td>
|
|
|
|
<td>%(classement)s</td>
|
|
|
|
<td>%(math)s</td><td>%(physique)s</td><td>%(anglais)s</td><td>%(francais)s</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
"""
|
|
|
|
adm_tmpl += """
|
|
|
|
<div>Bac %(bac)s (%(specialite)s) obtenu en %(annee_bac)s </div>
|
|
|
|
<div class="ilycee">%(ilycee)s</div>"""
|
|
|
|
if info["type_admission"] or info["classement"]:
|
|
|
|
adm_tmpl += """<div class="vadmission">"""
|
|
|
|
if info["type_admission"]:
|
|
|
|
adm_tmpl += """<span>Voie d'admission: <span class="etud_type_admission">%(type_admission)s</span></span> """
|
|
|
|
if info["classement"]:
|
|
|
|
adm_tmpl += """<span>Rang admission: <span class="etud_type_admission">%(classement)s</span></span>"""
|
|
|
|
if info["type_admission"] or info["classement"]:
|
|
|
|
adm_tmpl += "</div>"
|
|
|
|
if info["rap"]:
|
|
|
|
adm_tmpl += """<div class="note_rapporteur">%(rap)s</div>"""
|
|
|
|
adm_tmpl += """</div>"""
|
|
|
|
else:
|
|
|
|
adm_tmpl = "" # pas de boite "info admission"
|
|
|
|
info["adm_data"] = adm_tmpl % info
|
|
|
|
|
|
|
|
# Fichiers archivés:
|
|
|
|
info["fichiers_archive_htm"] = (
|
|
|
|
'<div class="fichetitre">Fichiers associés</div>'
|
2021-09-27 10:20:10 +02:00
|
|
|
+ sco_archives_etud.etud_list_archives_html(etudid)
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
# Devenir de l'étudiant:
|
2021-08-15 21:33:47 +02:00
|
|
|
has_debouche = True
|
2021-07-29 16:31:15 +02:00
|
|
|
if sco_permissions_check.can_edit_suivi():
|
2020-09-26 16:19:37 +02:00
|
|
|
suivi_readonly = "0"
|
|
|
|
link_add_suivi = """<li class="adddebouche">
|
|
|
|
<a id="adddebouchelink" class="stdlink" href="#">ajouter une ligne</a>
|
|
|
|
</li>"""
|
|
|
|
else:
|
|
|
|
suivi_readonly = "1"
|
|
|
|
link_add_suivi = ""
|
|
|
|
if has_debouche:
|
|
|
|
info[
|
|
|
|
"debouche_html"
|
|
|
|
] = """<div id="fichedebouche" data-readonly="%s" data-etudid="%s">
|
|
|
|
<span class="debouche_tit">Devenir:</span>
|
|
|
|
<div><form>
|
|
|
|
<ul class="listdebouches">
|
|
|
|
%s
|
|
|
|
</ul>
|
|
|
|
</form></div>
|
|
|
|
</div>""" % (
|
|
|
|
suivi_readonly,
|
|
|
|
info["etudid"],
|
|
|
|
link_add_suivi,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
info["debouche_html"] = "" # pas de boite "devenir"
|
|
|
|
#
|
|
|
|
if info["liste_annotations"]:
|
|
|
|
info["tit_anno"] = '<div class="fichetitre">Annotations</div>'
|
|
|
|
else:
|
|
|
|
info["tit_anno"] = ""
|
|
|
|
# Inscriptions
|
2021-07-11 17:37:12 +02:00
|
|
|
# if info["sems"]: # XXX rcl unused ? à voir
|
|
|
|
# rcl = (
|
|
|
|
# """(<a href="%(ScoURL)s/Notes/formsemestre_validation_etud_form?check=1&etudid=%(etudid)s&formsemestre_id=%(last_formsemestre_id)s&desturl=ficheEtud?etudid=%(etudid)s">récapitulatif parcours</a>)"""
|
|
|
|
# % info
|
|
|
|
# )
|
|
|
|
# else:
|
|
|
|
# rcl = ""
|
2020-09-26 16:19:37 +02:00
|
|
|
info[
|
|
|
|
"inscriptions_mkup"
|
|
|
|
] = """<div class="ficheinscriptions" id="ficheinscriptions">
|
|
|
|
<div class="fichetitre">Parcours</div>%s
|
2021-09-25 15:12:13 +02:00
|
|
|
%s %s
|
2020-09-26 16:19:37 +02:00
|
|
|
</div>""" % (
|
|
|
|
info["liste_inscriptions"],
|
|
|
|
info["link_bul_pdf"],
|
2021-09-25 15:12:13 +02:00
|
|
|
info["link_inscrire_ailleurs"],
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
#
|
|
|
|
if info["groupes"].strip():
|
|
|
|
info["groupes_row"] = (
|
|
|
|
'<tr><td class="fichetitre2">Groupe :</td><td>%(groupes)s</td></tr>' % info
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
info["groupes_row"] = ""
|
2021-09-27 10:20:10 +02:00
|
|
|
info["menus_etud"] = menus_etud(etudid)
|
2020-09-26 16:19:37 +02:00
|
|
|
tmpl = """<div class="menus_etud">%(menus_etud)s</div>
|
|
|
|
<div class="ficheEtud" id="ficheEtud"><table>
|
|
|
|
<tr><td>
|
|
|
|
<h2>%(nomprenom)s (%(inscription)s)</h2>
|
|
|
|
|
|
|
|
<span>%(emaillink)s</span>
|
|
|
|
</td><td class="photocell">
|
|
|
|
<a href="etud_photo_orig_page?etudid=%(etudid)s">%(etudfoto)s</a>
|
|
|
|
</td></tr></table>
|
|
|
|
|
|
|
|
<div class="fichesituation">
|
|
|
|
<div class="fichetablesitu">
|
|
|
|
<table>
|
|
|
|
<tr><td class="fichetitre2">Situation :</td><td>%(situation)s</td></tr>
|
|
|
|
%(groupes_row)s
|
|
|
|
<tr><td class="fichetitre2">Né%(ne)s le :</td><td>%(info_naissance)s</td></tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Adresse -->
|
|
|
|
<div class="ficheadresse" id="ficheadresse">
|
|
|
|
<table><tr>
|
|
|
|
<td class="fichetitre2">Adresse :</td><td> %(domicile)s %(codepostaldomicile)s %(villedomicile)s %(paysdomicile)s
|
|
|
|
%(modifadresse)s
|
|
|
|
%(telephones)s
|
|
|
|
</td></tr></table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
%(inscriptions_mkup)s
|
|
|
|
|
|
|
|
<div class="ficheadmission">
|
|
|
|
%(adm_data)s
|
|
|
|
|
|
|
|
%(fichiers_archive_htm)s
|
|
|
|
</div>
|
|
|
|
|
|
|
|
%(debouche_html)s
|
|
|
|
|
|
|
|
<div class="ficheannotations">
|
|
|
|
%(tit_anno)s
|
|
|
|
<table id="etudannotations">%(liste_annotations)s</table>
|
|
|
|
|
|
|
|
<form action="doAddAnnotation" method="GET" class="noprint">
|
|
|
|
<input type="hidden" name="etudid" value="%(etudid)s">
|
|
|
|
<b>Ajouter une annotation sur %(nomprenom)s: </b>
|
|
|
|
<table><tr>
|
|
|
|
<tr><td><textarea name="comment" rows="4" cols="50" value=""></textarea>
|
|
|
|
<br/><font size=-1>
|
|
|
|
<i>Ces annotations sont lisibles par tous les enseignants et le secrétariat.</i>
|
|
|
|
<br/>
|
|
|
|
<i>L'annotation commençant par "PE:" est un avis de poursuite d'études.</i>
|
|
|
|
</font>
|
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
<input type="hidden" name="author" width=12 value="%(authuser)s">
|
|
|
|
<input type="submit" value="Ajouter annotation"></td></tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="code_nip">code NIP: %(code_nip)s</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
"""
|
2021-06-14 00:23:22 +02:00
|
|
|
header = html_sco_header.sco_header(
|
2020-09-26 16:19:37 +02:00
|
|
|
page_title="Fiche étudiant %(prenom)s %(nom)s" % info,
|
|
|
|
cssstyles=["libjs/jQuery-tagEditor/jquery.tag-editor.css"],
|
|
|
|
javascripts=[
|
|
|
|
"libjs/jinplace-1.2.1.min.js",
|
|
|
|
"js/ue_list.js",
|
|
|
|
"libjs/jQuery-tagEditor/jquery.tag-editor.min.js",
|
|
|
|
"libjs/jQuery-tagEditor/jquery.caret.min.js",
|
|
|
|
"js/recap_parcours.js",
|
|
|
|
"js/etud_debouche.js",
|
|
|
|
],
|
|
|
|
)
|
2021-07-29 10:19:00 +02:00
|
|
|
return header + tmpl % info + html_sco_header.sco_footer()
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
2021-09-27 10:20:10 +02:00
|
|
|
def menus_etud(etudid):
|
2021-01-01 18:40:47 +01:00
|
|
|
"""Menu etudiant (operations sur l'etudiant)"""
|
2021-09-18 13:42:19 +02:00
|
|
|
authuser = current_user
|
2020-09-26 16:19:37 +02:00
|
|
|
|
2021-09-27 10:20:10 +02:00
|
|
|
etud = sco_etud.get_etud_info(etudid=etudid, filled=True)[0]
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
menuEtud = [
|
|
|
|
{
|
|
|
|
"title": etud["nomprenom"],
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "scolar.ficheEtud",
|
|
|
|
"args": {"etudid": etud["etudid"]},
|
2020-09-26 16:19:37 +02:00
|
|
|
"enabled": True,
|
|
|
|
"helpmsg": "Fiche étudiant",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Changer la photo",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "scolar.formChangePhoto",
|
|
|
|
"args": {"etudid": etud["etudid"]},
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudChangeAdr),
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Changer les données identité/admission",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "scolar.etudident_edit_form",
|
|
|
|
"args": {"etudid": etud["etudid"]},
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudInscrit),
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Supprimer cet étudiant...",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "scolar.etudident_delete",
|
|
|
|
"args": {"etudid": etud["etudid"]},
|
2021-06-15 15:38:38 +02:00
|
|
|
"enabled": authuser.has_permission(Permission.ScoEtudInscrit),
|
2020-09-26 16:19:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"title": "Voir le journal...",
|
2021-06-14 18:08:52 +02:00
|
|
|
"endpoint": "scolar.showEtudLog",
|
|
|
|
"args": {"etudid": etud["etudid"]},
|
2020-09-26 16:19:37 +02:00
|
|
|
"enabled": True,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2021-06-14 18:08:52 +02:00
|
|
|
return htmlutils.make_menu("Etudiant", menuEtud, alone=True)
|
2020-09-26 16:19:37 +02:00
|
|
|
|
|
|
|
|
2021-09-27 10:20:10 +02:00
|
|
|
def etud_info_html(etudid, with_photo="1", debug=False):
|
2020-09-26 16:19:37 +02:00
|
|
|
"""An HTML div with basic information and links about this etud.
|
|
|
|
Used for popups information windows.
|
|
|
|
"""
|
2021-07-29 16:31:15 +02:00
|
|
|
formsemestre_id = sco_formsemestre_status.retreive_formsemestre_from_request()
|
2020-09-26 16:19:37 +02:00
|
|
|
with_photo = int(with_photo)
|
2021-08-22 13:24:36 +02:00
|
|
|
etud = sco_etud.get_etud_info(filled=True)[0]
|
2021-09-24 12:10:53 +02:00
|
|
|
photo_html = sco_photos.etud_photo_html(etud, title="fiche de " + etud["nom"])
|
2020-09-26 16:19:37 +02:00
|
|
|
# experimental: may be too slow to be here
|
|
|
|
etud["codeparcours"], etud["decisions_jury"] = sco_report.get_codeparcoursetud(
|
2021-08-21 00:24:51 +02:00
|
|
|
etud, prefix="S", separator=", "
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
bac = sco_bac.Baccalaureat(etud["bac"], etud["specialite"])
|
|
|
|
etud["bac_abbrev"] = bac.abbrev()
|
|
|
|
H = (
|
|
|
|
"""<div class="etud_info_div">
|
|
|
|
<div class="eid_left">
|
|
|
|
<div class="eid_nom"><div>%(nomprenom)s</div></div>
|
|
|
|
<div class="eid_info eid_bac">Bac: <span class="eid_bac">%(bac_abbrev)s</span></div>
|
|
|
|
<div class="eid_info eid_parcours">%(codeparcours)s</div>
|
|
|
|
"""
|
|
|
|
% etud
|
|
|
|
)
|
|
|
|
|
|
|
|
# Informations sur l'etudiant dans le semestre courant:
|
|
|
|
sem = None
|
|
|
|
if formsemestre_id: # un semestre est spécifié par la page
|
2021-08-19 10:28:35 +02:00
|
|
|
sem = sco_formsemestre.get_formsemestre(formsemestre_id)
|
2020-09-26 16:19:37 +02:00
|
|
|
elif etud["cursem"]: # le semestre "en cours" pour l'étudiant
|
|
|
|
sem = etud["cursem"]
|
|
|
|
if sem:
|
2022-03-27 10:05:12 +02:00
|
|
|
groups = sco_groups.get_etud_groups(etudid, formsemestre_id)
|
2020-09-26 16:19:37 +02:00
|
|
|
grc = sco_groups.listgroups_abbrev(groups)
|
|
|
|
H += '<div class="eid_info">En <b>S%d</b>: %s</div>' % (sem["semestre_id"], grc)
|
|
|
|
H += "</div>" # fin partie gauche (eid_left)
|
|
|
|
if with_photo:
|
|
|
|
H += '<span class="eid_right">' + photo_html + "</span>"
|
|
|
|
|
|
|
|
H += "</div>"
|
|
|
|
if debug:
|
|
|
|
return (
|
2021-06-13 18:29:53 +02:00
|
|
|
html_sco_header.standard_html_header()
|
2020-09-26 16:19:37 +02:00
|
|
|
+ H
|
2021-06-13 18:29:53 +02:00
|
|
|
+ html_sco_header.standard_html_footer()
|
2020-09-26 16:19:37 +02:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
return H
|