confirmation/views: Remove unused variables from template context.

This commit is contained in:
Rishi Gupta 2017-07-06 22:52:20 -07:00 committed by Steve Howell
parent c1a768f5be
commit 8ba0fafa3f
1 changed files with 0 additions and 2 deletions

View File

@ -28,9 +28,7 @@ def confirm(request, confirmation_key):
except Confirmation.DoesNotExist:
pass
ctx = {
'object': obj,
'confirmed': confirmed,
'days': getattr(settings, 'EMAIL_CONFIRMATION_DAYS', 10),
'key': confirmation_key,
'full_name': request.GET.get("full_name", None),
}