Thursday, April 18, 2019

Matt Layman: Completing Account Deactivation on Building SaaS with Python and Django

In the latest episode of Building SaaS with Python and Django, we completed the account deactivation workflow of the Django app.

This included:

  • Canceling the subscription with Stripe.
  • Marking the user as inactive.
  • Sending the user to a friendly page to indicate that their account is deactivated.

The recording is available on YouTube and the full transcript is below.



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...