django-planet

What's new in Django community blogs?

Django Custom Lookups

April 23, 2019 » Clivern » [Archived Version]

By default Django has a date lookup that support timezones. It actually will wrap your field with CONVERT_TZ in case USE_TZ is True. This is pretty awesome unless you have timezones table empty because this call will return Null. But even the following will work, It is not safe with Daylight saving timing. You can […] The post Django Custom Lookups first appeared on Clivern.

Read More

Completing Account Deactivation on Building SaaS with Python and Django

April 18, 2019 » Django on Matt Layman » [Archived Version]

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.

Read More

Pip-tools and App Packaging - Building SaaS #19

April 18, 2019 » Django on Matt Layman » [Archived Version]

In this episode, we started by improving our requirements.txt handling with pip-tools. Then we cleaned things up and began turning the app into a Python package.

Read More

Contributing to Django

April 17, 2019 » Django Chat » [Archived Version]

How to get started contributing to Django and why it's so helpful to the community and your own career.

Read More

jetstack/cert-manager on GKE Private Clusters

April 12, 2019 » REVSYS Blog » [Archived Version]

jetstack/cert-manager on GKE Private Clusters

Read More

Logging Rethought

April 11, 2019 » Markus Holtermann » [Archived Version]

We build services used by thousands of people. While uptime monitoring is crucial to deliver a great user experience, understanding what went wrong is equally important.

Read More

Logging Rethought

April 11, 2019 » Markus Holtermann » [Archived Version]

We build services used by thousands of people. While uptime monitoring is crucial to deliver a great user experience, understanding what went wrong is equally important.

Read More

DjangoCon Europe 2019

April 11, 2019 » Paolo Melchiorre » [Archived Version]

DjangoCon Europe is an international conference for the community by the community about the Django web framework, held each year in Europe.

Read More

Django Fellow - Tim Graham

April 10, 2019 » Django Chat » [Archived Version]

An interview with Tim Graham, the inaugural Django Fellow, who has played the largest single role in Django's advancement over the past 4+ years.

Read More

Completing Account Deactivation - Building SaaS #18

April 4, 2019 » Django on Matt Layman » [Archived Version]

In this episode, we finished the account deactivation flow. We looked at how to log out and mark an account as inactive. The deactivate customer is presented with a nice deactivated page to let them know there subscription was canceled successfully.

Read More