diff --git a/epdb/urls.py b/epdb/urls.py index 4e170c7b..0cc44aeb 100644 --- a/epdb/urls.py +++ b/epdb/urls.py @@ -184,4 +184,5 @@ urlpatterns = [ re_path(r"^contact$", v.contact_support, name="contact_support"), re_path(r"^jobs$", v.jobs, name="jobs"), re_path(r"^cite$", v.cite, name="cite"), + re_path(r"^legal$", v.legal, name="legal"), ] diff --git a/epdb/views.py b/epdb/views.py index fea53af8..96f1422d 100644 --- a/epdb/views.py +++ b/epdb/views.py @@ -2745,3 +2745,9 @@ def cite(request): context = get_base_context(request) context["title"] = "enviPath - How to Cite" return render(request, "static/cite.html", context) + + +def legal(request): + context = get_base_context(request) + context["title"] = "enviPath - Legal Information" + return render(request, "static/legal.html", context) diff --git a/templates/includes/footer.html b/templates/includes/footer.html index e23d301f..158b8d90 100644 --- a/templates/includes/footer.html +++ b/templates/includes/footer.html @@ -17,6 +17,7 @@ About us Contact us Jobs + Legal