url /
This commit is contained in:
부모
84048baecd
커밋
8a979eb35b
1개의 변경된 파일과 2개의 추가작업 그리고 2개의 파일을 삭제
|
@ -87,7 +87,7 @@ def create_app():
|
|||
|
||||
|
||||
|
||||
@app.route('/lost/<string:id>', methods=['POST', 'GET'])
|
||||
@app.route('/lost/<string:id>/', methods=['POST', 'GET'])
|
||||
def lost(id = "grille") :
|
||||
if request.method == "POST":
|
||||
if 'YES' in request.form:
|
||||
|
@ -111,7 +111,7 @@ def create_app():
|
|||
|
||||
return render_template('lost.html',img=id)
|
||||
|
||||
@app.route('/end/<string:id>', methods=['POST', 'GET'])
|
||||
@app.route('/end/<string:id>/', methods=['POST', 'GET'])
|
||||
def end(id = "grille") :
|
||||
if request.method == "POST":
|
||||
if 'YES' in request.form:
|
||||
|
|
불러오는 중…
Reference in a new issue