From 9945101e1e9970057bdd281dcff8f2c143551ca5 Mon Sep 17 00:00:00 2001 From: Romain J Date: Thu, 5 Nov 2020 09:25:25 +0100 Subject: [PATCH] feat(url): add /donate as alias to /tips --- apps/gnous_eu/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/gnous_eu/urls.py b/apps/gnous_eu/urls.py index 7e2f4a3..e88a0a1 100644 --- a/apps/gnous_eu/urls.py +++ b/apps/gnous_eu/urls.py @@ -9,5 +9,6 @@ urlpatterns = [ path("", TemplateView.as_view(template_name="index.html"), name="index"), path("about", PartnersView.index, name="about"), path("tips", TemplateView.as_view(template_name="tips.html"), name="tips"), + path("donate", TemplateView.as_view(template_name="tips.html"), name="tips"), path("services", ServicesView.index, name="services"), ]