rename next_page → next in templates

This commit is contained in:
Martin Pépin 2020-05-13 18:47:14 +02:00
parent 1f631ebae2
commit d4e0f4bf0f
2 changed files with 3 additions and 3 deletions

View file

@ -7,10 +7,10 @@
<title>ENS Auth</title> <title>ENS Auth</title>
</head> </head>
<body> <body>
<p><a href="{% url "authens:login.cas" %}?next={{ next_page | urlencode }}"> <p><a href="{% url "authens:login.cas" %}?next={{ next| urlencode }}">
{% trans "Login par CAS" %} {% trans "Login par CAS" %}
</a></p> </a></p>
<p><a href="{% url "authens:login.pwd" %}?next={{ next_page | urlencode }}"> <p><a href="{% url "authens:login.pwd" %}?next={{ next| urlencode }}">
{% trans "Login par mot de passe" %} {% trans "Login par mot de passe" %}
</a></p> </a></p>
</body> </body>

View file

@ -40,7 +40,7 @@ class LoginSwitchView(NextPageMixin, TemplateView):
def get_context_data(self, **kwargs): def get_context_data(self, **kwargs):
ctx = super().get_context_data(**kwargs) ctx = super().get_context_data(**kwargs)
ctx["next_page"] = self.get_next_url() ctx["next"] = self.get_next_url()
return ctx return ctx