diff --git a/accounts/views.py b/accounts/views.py index c520d64..d7f7f61 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -131,6 +131,7 @@ def form_valid(self, form): # Check if user is not subscribed and handle the subscription logic here if self.object.subscription_status not in ['subscribed']: # Your subscription logic goes here. You might want to call an external API, charge the user, etc. - self.object.subscription_status = 'subscribed' # For now, just setting the status + # self.object.subscription_status = 'subscribed' # For now, just setting the status + pass messages.success(self.request, "User details updated successfully!") return super().form_valid(form)