Update app.py
Browse files
app.py
CHANGED
|
@@ -788,13 +788,13 @@ def generate_quiz(transcript_or_json_str):
|
|
| 788 |
|
| 789 |
# --- Flask ルーティング (HTMLページ表示) ---
|
| 790 |
|
| 791 |
-
|
| 792 |
@app.route('/input')
|
| 793 |
def input_page():
|
| 794 |
"""入力画面を表示"""
|
| 795 |
logging.debug("Routing: /input ページ表示")
|
| 796 |
return render_template('input.html')
|
| 797 |
-
|
| 798 |
@app.route('/history')
|
| 799 |
def history_page():
|
| 800 |
"""履歴画面を表示"""
|
|
|
|
| 788 |
|
| 789 |
# --- Flask ルーティング (HTMLページ表示) ---
|
| 790 |
|
| 791 |
+
|
| 792 |
@app.route('/input')
|
| 793 |
def input_page():
|
| 794 |
"""入力画面を表示"""
|
| 795 |
logging.debug("Routing: /input ページ表示")
|
| 796 |
return render_template('input.html')
|
| 797 |
+
@app.route('/')
|
| 798 |
@app.route('/history')
|
| 799 |
def history_page():
|
| 800 |
"""履歴画面を表示"""
|