2024-02-09 21:52:33 +01:00
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# ScoDoc
|
|
|
|
#
|
|
|
|
# Copyright (c) 1999 - 2024 Emmanuel Viennet. All rights reserved.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""
|
|
|
|
Formulaire options génération table poursuite études (PE)
|
|
|
|
"""
|
|
|
|
|
|
|
|
from flask_wtf import FlaskForm
|
|
|
|
from wtforms import BooleanField, HiddenField, SubmitField
|
|
|
|
|
|
|
|
|
|
|
|
class ParametrageClasseurPE(FlaskForm):
|
|
|
|
"Formulaire paramétrage génération classeur PE"
|
2024-02-27 18:23:31 +01:00
|
|
|
# cohorte_restreinte = BooleanField(
|
|
|
|
# "Restreindre aux étudiants inscrits dans le semestre (sans interclassement de promotion) (à venir)"
|
|
|
|
# )
|
2024-02-27 17:11:00 +01:00
|
|
|
moyennes_tags = BooleanField(
|
2024-02-27 17:22:30 +01:00
|
|
|
"Générer les moyennes sur les tags de modules personnalisés (cf. programme de formation)",
|
|
|
|
default=True,
|
|
|
|
render_kw={"checked": ""},
|
2024-02-27 17:11:00 +01:00
|
|
|
)
|
2024-02-09 21:52:33 +01:00
|
|
|
moyennes_ue_res_sae = BooleanField(
|
2024-02-27 17:22:30 +01:00
|
|
|
"Générer les moyennes des ressources et des SAEs",
|
|
|
|
default=True,
|
|
|
|
render_kw={"checked": ""},
|
2024-02-09 21:52:33 +01:00
|
|
|
)
|
2024-02-27 18:00:06 +01:00
|
|
|
moyennes_ues_rcues = BooleanField(
|
2024-02-27 18:23:31 +01:00
|
|
|
"Générer les moyennes par RCUEs (compétences) et leurs synthèses HTML étudiant par étudiant",
|
2024-02-27 18:00:06 +01:00
|
|
|
default=True,
|
|
|
|
render_kw={"checked": ""},
|
|
|
|
)
|
|
|
|
|
2024-02-27 17:22:30 +01:00
|
|
|
min_max_moy = BooleanField("Afficher les colonnes min/max/moy")
|
2024-02-27 18:16:25 +01:00
|
|
|
|
2024-02-27 18:23:31 +01:00
|
|
|
# synthese_individuelle_etud = BooleanField(
|
|
|
|
# "Générer (suppose les RCUES)"
|
|
|
|
# )
|
2024-02-27 19:42:04 +01:00
|
|
|
publipostage = BooleanField(
|
|
|
|
"Nomme les moyennes pour publipostage",
|
|
|
|
# default=False,
|
|
|
|
# render_kw={"checked": ""},
|
|
|
|
)
|
2024-02-09 21:52:33 +01:00
|
|
|
submit = SubmitField("Générer les classeurs poursuites d'études")
|
|
|
|
cancel = SubmitField("Annuler", render_kw={"formnovalidate": True})
|