From 349bac47514a321aa403e7c79c9eef18ebcf22e2 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Tue, 16 Aug 2022 11:08:32 +0000 Subject: [PATCH] urls: Move /attribution files to the corporate folder. --- corporate/urls.py | 2 +- templates/{zerver => corporate}/attribution.html | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/{zerver => corporate}/attribution.html (100%) diff --git a/corporate/urls.py b/corporate/urls.py index e724d5b66c..07b4490aa0 100644 --- a/corporate/urls.py +++ b/corporate/urls.py @@ -65,7 +65,7 @@ landing_page_urls = [ landing_view, {"template_name": "corporate/development-community.html"}, ), - path("attribution/", landing_view, {"template_name": "zerver/attribution.html"}), + path("attribution/", landing_view, {"template_name": "corporate/attribution.html"}), path("team/", team_view), path("history/", landing_view, {"template_name": "zerver/history.html"}), path("why-zulip/", landing_view, {"template_name": "zerver/why-zulip.html"}), diff --git a/templates/zerver/attribution.html b/templates/corporate/attribution.html similarity index 100% rename from templates/zerver/attribution.html rename to templates/corporate/attribution.html