From 824ff142b6815600674ac0855aa34ff5e13207ab Mon Sep 17 00:00:00 2001 From: Brian Date: Mon, 31 Jul 2023 11:38:44 -0400 Subject: [PATCH] Update home.py --- eAbsentee/home/home.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eAbsentee/home/home.py b/eAbsentee/home/home.py index c195e55..01964bc 100644 --- a/eAbsentee/home/home.py +++ b/eAbsentee/home/home.py @@ -26,6 +26,10 @@ def about(): def privacy(): return send_file('./static/pdf/privacy_policy.pdf', attachment_filename='privacy_policy.pdf') +@home_bp.route('/guidance/') +def privacy(): + return send_file('./static/pdf/election_guidance.pdf', attachment_filename='election_guidance.pdf') + @home_bp.route('/g//') def set_group(group: str): response = make_response(render_template('index.html'))