In this post, I want to look at how Django Forms can be used to validate incoming HTTP request containing POST method. Django comes with some useful built-in data validation methods. You can rely on these methods but there are
Django
A collection of 3 posts
Let's build a recipe sharing web app using Django - Introduction to CRUD web app development
Quick intro: This is a quick Django tutorial where we'll build a recipe sharing web app. The final application will allow users to create profiles, recipe lists and share them with other users. Django is one of the best web
Understanding Django Class-Based Views
One of the key features of Django is its use of class-based views, which provide a way to organise and simplify the process of handling incoming HTTP requests and returning the appropriate response. A class-based view in Django is simply