From 0e668c8207ccbc0eb6656dd73396c4c72cff2429 Mon Sep 17 00:00:00 2001 From: Owocki Date: Fri, 8 Feb 2019 09:33:33 -0700 Subject: [PATCH] subscription info response --- app/grants/views.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/grants/views.py b/app/grants/views.py index 33183c5d2cd..0e99222f7c8 100644 --- a/app/grants/views.py +++ b/app/grants/views.py @@ -375,6 +375,12 @@ def grant_fund(request, grant_id, grant_slug): subscription.contributor_profile = profile subscription.grant = grant subscription.save() + + messages.info( + request, + _('Your subscription has been created. It will bill within the next 5 minutes or so. Thank you for supporting Open Source !') + ) + return JsonResponse({ 'success': True, })