-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.py
36 lines (27 loc) · 808 Bytes
/
gui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
def f_index():
return render_template('index.html')
@app.route('/LApersonal')
def f_student():
return render_template("LApersonal.html")
@app.route('/index_office')
def f_index_office():
return render_template("index_office.html")
@app.route('/request_tromp')
def f_request():
return render_template('request_tromp.html')
@app.route('/university')
def f_university():
return render_template('university.html')
@app.route('/statistics')
def f_statistics():
return render_template('statistics.html')
@app.route('/ai')
def f_ai():
return render_template('ai.html')
@app.route('/overview')
def f_overview():
return render_template('overview.html')