From 9ca9c1d504dfc944115d5cbb7e3d5451924d63f5 Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Mon, 6 Jan 2025 10:40:35 -0500 Subject: [PATCH 1/3] 2227 - Adding Acceptable Use Policy page --- app/main/views/index.py | 7 ++++ app/templates/components/footer.html | 3 ++ .../views/acceptable-use-policy.html | 38 +++++++++++++++++++ tests/app/test_navigation.py | 1 + 4 files changed, 49 insertions(+) create mode 100644 app/templates/views/acceptable-use-policy.html diff --git a/app/main/views/index.py b/app/main/views/index.py index fe147fb72..92cbfaf0b 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -350,6 +350,13 @@ def studio(): ) +@main.route("/acceptable-use-policy") +def acceptable_use_policy(): + return render_template( + "views/acceptable-use-policy.html", + ) + + # --- Redirects --- # diff --git a/app/templates/components/footer.html b/app/templates/components/footer.html index d7aa2bf1a..6f77fbfbc 100644 --- a/app/templates/components/footer.html +++ b/app/templates/components/footer.html @@ -54,6 +54,9 @@ Performance reports +