#django
Read more stories on Hashnode
Articles with this tag
There are a few typical operations that we should support for any model we develop if we are constructing a system. These are CRUD operations, which...
Before starting create a project and an app. Check previous blogs for assistance if you would like. It's time to consider the front end of our...
We will first open a web page with html. First, of all let's fallow all the steps to open a file in html. Let's open terminal: pip install...
Let's open a new app with the code we are familiar with. I am naming mine "notes". python manage.py startapp notes Like previously, we should...
Django has the entire authentication systems that is ready to go. With "runserver" function go to your browser and add the "/admin" at the end of your...
Introduction to Data Modelling Models are used to store and retrieve data. First, of all we should always figure out pieces of data that we want to...