django-planet

Blog: Matt Layman

web https://www.mattlayman.com/tags/django/
Author

Finish School Break Filtering - Building SaaS #115

Sept. 23, 2021 » Django on Matt Layman » [Archived Version]

In this episode, we finished the UI work and wrote the final tests needed to complete the school break filtering by student feature.

Read More

Student Filtering UI - Building SaaS #114

Sept. 16, 2021 » Django on Matt Layman » [Archived Version]

In this episode, we worked on UI and form changes to enable the extra many to many filtering that enables school breaks to be applied to individual students.

Read More

Student Filtering UI - Building SaaS with Python and Django #114

Sept. 16, 2021 » Django on Matt Layman » [Archived Version]

In this episode, we worked on UI and form changes to enable the extra many to many filtering that enables school breaks to be applied to individual students.

Read More

User File Use

Sept. 14, 2021 » Django on Matt Layman » [Archived Version]

In the last Understand Django article, you learned about Django settings and how to manage the configuration of your application. We also looked at tools to help you define settings effectively. With this article, we’re going to dig into file management. Unlike the static files that you create for the app yourself, you may want your app to accept files from your users. Profile pictures are a good example of user files.

Read More

Episode 15 - User Session Data

Sept. 13, 2021 » Django on Matt Layman » [Archived Version]

On this episode, we will dig into a data storage technique that Django makes heavy use of for visitors to your site. This category of data is called session data. Listen at djangoriffs.com or with the player below. Last Episode On the last episode episode, we looked at what it takes to go live and how to prepare your Django project for the internet. What Is A Session? A session is a set of data that is available to users that Django can use over multiple requests.

Read More

School Break Filters - Building SaaS #113

Sept. 2, 2021 » Django on Matt Layman » [Archived Version]

In this episode, we finished up making changes to the app to support filtering school breaks to students.

Read More

School Break Filters - Building SaaS with Python and Django #113

Sept. 2, 2021 » Django on Matt Layman » [Archived Version]

In this episode, we finished up making changes to the app to support filtering school breaks to students.

Read More

Episode 14 - Going Live

July 19, 2021 » Django on Matt Layman » [Archived Version]

On this episode, we will look at what it takes to go live and how to prepare your Django project for the internet. Listen at djangoriffs.com or with the player below. Last Episode On the last episode, we discussed how you can verify that your site works and continues to work. We dug into automated testing and how to write tests for your Django apps. Pick A Python Application Server When you begin to learn Django, the documentation will instruct you to use .

Read More

Making Sense Of Settings

July 15, 2021 » Django on Matt Layman » [Archived Version]

In the last Understand Django article, we looked at a storage concept in Django called sessions. Sessions provide a solution to problems like “How does Django know when a user is logged in?” or “Where can the framework store data for a visitor on your app?” With this article, you’ll learn about Django settings and how to manage the configuration of your application. We’ll also look at tools to help you define your settings effectively.

Read More

Episode 13 - Does My Site Work?

June 1, 2021 » Django on Matt Layman » [Archived Version]

On this episode, we will discuss how you can verify that your site works and continues to work. We’re digging into automated testing and how to write tests for your Django apps. Listen at djangoriffs.com or with the player below. Last Episode On the last episode, our focus was on static files. Static files are vital to your application, but they have little to do with Python code. We saw what they are and what they do.

Read More