Switch url parameter to full_name from service-specific gafyd_name

(imported from commit 21541da29d2846cfd912d19b73e239e96606f9e5)
This commit is contained in:
Luke Faraone
2013-11-05 16:13:59 -05:00
parent c11b65590b
commit 00e72cd97d
4 changed files with 6 additions and 7 deletions

View File

@@ -29,7 +29,7 @@ def confirm(request, confirmation_key):
'confirmed': confirmed,
'days': getattr(settings, 'EMAIL_CONFIRMATION_DAYS', 10),
'key': confirmation_key,
'gafyd_name': request.GET.get("gafyd_name", None),
'full_name': request.GET.get("full_name", None),
}
templates = [
'confirmation/confirm.html',