equal
deleted
inserted
replaced
11 app = Flask(__name__) |
11 app = Flask(__name__) |
12 app.secret_key = str(uuid.uuid4()) |
12 app.secret_key = str(uuid.uuid4()) |
13 |
13 |
14 @app.route('/') |
14 @app.route('/') |
15 def page_home(): |
15 def page_home(): |
16 return render_template('index.html') |
16 return render_template('index.html') |
|
17 #return render_template('annotationclient.html', logging=True) |
17 |
18 |
18 |
19 |
19 @app.route('/annot') |
20 @app.route('/annot') |
20 def page_annot(): |
21 def page_annot(): |
21 return render_template('annot.html') |
22 return render_template('annot.html') |
|
23 |
|
24 |
|
25 @app.route('/annotationclient') |
|
26 def page_annotationclient(): |
|
27 return render_template('annotationclient.html', logging=True) |