kpsul/gestioncof/cms/views.py

30 lines
973 B
Python
Raw Normal View History

2020-08-22 12:34:08 +02:00
from django import forms
from django.shortcuts import render, redirect
from django.utils.translation import gettext as _
2019-01-06 00:17:57 +01:00
2020-08-22 12:34:08 +02:00
import re
2017-08-07 23:31:27 +02:00
def raw_calendar_view(request, year, month):
2019-01-06 00:25:41 +01:00
return render(request, "cofcms/calendar_raw.html", {"month": month, "year": year})
2020-08-22 12:34:08 +02:00
class CaptchaForm(forms.Form):
answer = forms.CharField(label="Réponse", max_length=32)
def clean_answer(self):
value = self.cleaned_data["answer"]
if not re.match(r"(les|the)? *ernests?", value.strip().lower()):
raise forms.ValidationError(_("Réponse incorrecte"))
return value
def sympa_captcha_form_view(request):
if request.method == "POST":
form = CaptchaForm(request.POST)
if form.is_valid():
return render(request, "cofcms/sympa.html",
{"redirect": "https://lists.ens.fr/wws/lists/"})
else:
form = CaptchaForm()
return render(request, "cofcms/sympa.html", {"form": form})