amauricunha commited on
Commit
2b943d1
·
verified ·
1 Parent(s): e5fe13e

Update flask_app_hf.py

Browse files
Files changed (1) hide show
  1. flask_app_hf.py +2 -2
flask_app_hf.py CHANGED
@@ -107,11 +107,11 @@ def index():
107
 
108
  @app.route('/admin')
109
  def admin():
110
- return send_file('../templates_hf/admin.html')
111
 
112
  @app.route('/status')
113
  def status():
114
- return send_file('../templates_hf/status.html')
115
 
116
  # --- API ENDPOINTS ---
117
 
 
107
 
108
  @app.route('/admin')
109
  def admin():
110
+ return send_file('templates/admin.html')
111
 
112
  @app.route('/status')
113
  def status():
114
+ return send_file('templates/status.html')
115
 
116
  # --- API ENDPOINTS ---
117