From c37754376b3c46578f0157fc9f0350cc4235c348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Wed, 15 Mar 2017 11:40:52 +0000 Subject: [PATCH] Move registration_form to gestioncof/ The `registration` view was referencing this file using `"gestioncof/registration_form.html"` whereas the `registration_post` templated was referencing it in the global namespace `"registration_form.html"`. We choose the `gestioncof/` folder in order to avoid further conflicts with other apps. --- gestioncof/templates/{ => gestioncof}/registration_form.html | 0 gestioncof/templates/gestioncof/registration_post.html | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename gestioncof/templates/{ => gestioncof}/registration_form.html (100%) diff --git a/gestioncof/templates/registration_form.html b/gestioncof/templates/gestioncof/registration_form.html similarity index 100% rename from gestioncof/templates/registration_form.html rename to gestioncof/templates/gestioncof/registration_form.html diff --git a/gestioncof/templates/gestioncof/registration_post.html b/gestioncof/templates/gestioncof/registration_post.html index e96fa1e7..5eca28c9 100644 --- a/gestioncof/templates/gestioncof/registration_post.html +++ b/gestioncof/templates/gestioncof/registration_post.html @@ -3,6 +3,6 @@ {% block realcontent %}

Inscription d'un nouveau membre

- {% include "registration_form.html" %} + {% include "gestioncof/registration_form.html" %}
{% endblock %}