Move config download/upload into Counties and Exceptions pages

This commit is contained in:
zyphlar
2026-04-23 10:16:12 -07:00
parent 24c27767ec
commit 7fdf3f75ea
4 changed files with 70 additions and 52 deletions
+2 -2
View File
@@ -503,7 +503,7 @@ def get_counties():
@app.route('/counties')
def counties_page():
return render_template('counties.html')
return render_template('counties.html', current_user=session.get('username'))
@app.route('/api/counties', methods=['GET'])
def get_counties_api():
@@ -555,7 +555,7 @@ _ensure_exceptions_file()
@app.route('/exceptions')
def exceptions_page():
return render_template('exceptions.html')
return render_template('exceptions.html', current_user=session.get('username'))
@app.route('/api/exceptions', methods=['GET'])