Delete data from the database In this part of the django tutorials, you will learn how to update the data of a database in a django project. updating the database is another one of the four main operations of a CRUD application. A CRUD application stands for…
Updates
#7 Deleting Data
Delete data from the database In this part of the django tutorials, you will learn how to delete data from a database in a Django project. Removing data from a database is another one of the four main operations of a CRUD application. A CRUD application stands for Create,…
#6 Post Data (Django Beginner to Intermediate Tutorials)
In this part of the Django tutorials, you will learn about how to post data to a database in a Django project. posting data is one of the main four operations on a database. this operation is usually done by the user through the given forms in a template…
#5 Model View Template Query Data (Django Beginner to Intermediate Tutorials)
Database models and how to query them in Django In this part of the Django tutorials, you will learn about the models and querying a database in a Django project. First of all you will see how you should create the database tables in Django using the…
#4 Templates and Html files in Django (Django Beginner to Intermediate Tutorials)
Templates and Html files in Django In this part of the Django tutorials, you will learn about the templates in a Django project. Template files are related to the front-end of your application. In this video, you will learn how to create these template files and how to…
#3 URL Views (Django Beginner to Intermediate Tutorials)
Views and URLs in Django In this part of the Django tutorials, you will learn about the views and URLs in a Django project. Watch The Video on Youtube…
#2 Create a Project (Django Beginner to Intermediate Tutorials)
Introduction to Django Welcome to this complete Django course. In this course, you will become familiar with the django web framework which is based on Python language. However, it is highly recommended that you have a basic knowledge of Html, too. CSS and JavaScript will also come to…
#1 Introduction (Django Beginner to Intermediate Tutorials)
Introduction to Django Welcome to this brand new Django course. In this video, you will become familiar with the django web framework which is based on Python language. However, it is highly recommended that you have a basic knowledge of Html, too. CSS and JavaScript will also come…
#13 Revert, Reset, and Amend in Git (Git and GitHub Tutorials from Scratch)
Git revert, reset and amend Welcome to another part of the git tutorials. In this part, you will learn how revert, reset and amend commands work in a git project. These commands are concerned with what stage or version of the project you want reset, come back to…
#12 Contributing to GitHub Projects (Git and GitHub Tutorials from Scratch)
Contribution Process on GitHub Welcome to another part of the github tutorials. In this part, you will learn how to contribute with other repositories on Github. For example imagine that you want to update someone else’s project and then apply those changes on that repository. The first…