forked from ScoDoc/ScoDoc
19 lines
529 B
Python
19 lines
529 B
Python
|
##############################################################################
|
||
|
# ScoDoc
|
||
|
# Copyright (c) 1999 - 2022 Emmanuel Viennet. All rights reserved.
|
||
|
# See LICENSE
|
||
|
##############################################################################
|
||
|
|
||
|
"""ScoDoc 9.3 : Formulaires / jurys BUT
|
||
|
"""
|
||
|
|
||
|
|
||
|
from flask_wtf import FlaskForm
|
||
|
from wtforms import SubmitField
|
||
|
|
||
|
|
||
|
class FormSemestreValidationAutoBUTForm(FlaskForm):
|
||
|
"simple form de confirmation"
|
||
|
submit = SubmitField("Lancer le calcul")
|
||
|
cancel = SubmitField("Annuler")
|