Merge branch 'master' of https://forge.chapril.org/CretinsMotorisesIngenieux/Marin
This commit is contained in:
commit
fd20cd6319
19
app.py
19
app.py
@ -25,12 +25,21 @@ def sauveteur(idsauveteur):
|
|||||||
def bateau(idbateau):
|
def bateau(idbateau):
|
||||||
return pages.bateau(idbateau)
|
return pages.bateau(idbateau)
|
||||||
|
|
||||||
@app.route('/modifications')
|
@app.route('/modifications', methods=['GET', 'POST'])
|
||||||
@app.route('/modifications/')
|
@app.route('/modifications/', methods=['GET', 'POST'])
|
||||||
@app.route('/modification')
|
@app.route('/modification', methods=['GET', 'POST'])
|
||||||
@app.route('/modification/')
|
@app.route('/modification/', methods=['GET', 'POST'])
|
||||||
def modifs():
|
def modifs():
|
||||||
return pages.modifs()
|
if request.method == 'POST':
|
||||||
|
nom = request.form["nom"]
|
||||||
|
prenom = request.form["prenom"]
|
||||||
|
mail = request.form["email"]
|
||||||
|
article = request.form["article"]
|
||||||
|
modif = request.form["modif"]
|
||||||
|
pages.suggestion(nom,prenom,mail,article,modif)
|
||||||
|
return pages.main()
|
||||||
|
else:
|
||||||
|
return pages.modifs()
|
||||||
|
|
||||||
@app.route('/expeditions/<int:idexpe>')
|
@app.route('/expeditions/<int:idexpe>')
|
||||||
@app.route('/expedition/<int:idexpe>')
|
@app.route('/expedition/<int:idexpe>')
|
||||||
|
5
pages.py
5
pages.py
@ -112,3 +112,8 @@ def search(texte):
|
|||||||
results.append(r)
|
results.append(r)
|
||||||
return render_template("searchresults.html",liste=results)
|
return render_template("searchresults.html",liste=results)
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
|
=======
|
||||||
|
def suggestion(nom,prenom,mail,article,modif):
|
||||||
|
lib.ex_sql(dbname,"INSERT INTO suggestion(prenom, nom, mail, nomarticle, suggestion) VALUES (?, ?, ?, ?, ?);",(nom,prenom,mail,article,modif))
|
||||||
|
>>>>>>> a1f4410335d7d6e3a90df8e4ded6d7fa2478086f
|
||||||
|
Loading…
Reference in New Issue
Block a user