How becoming a programming Tutor helped me
Unexpectedly I got into teaching programming and other computer science subjects.....

Search for a command to run...
Articles tagged with #python
Unexpectedly I got into teaching programming and other computer science subjects.....

Django Model Formsets Introduction Formset is a way of working with multiple forms at the same time. Using Formset you can use multiple forms on a single page. In this article, we will be creating formset using a model and see all the options that ar...

Overview In this blog post, we will be creating templates for our authentication system. We will be creating a base template that will contain the common elements of all the templates and then we will create other templates which inherit from the bas...

Overview For the authentication system, we will start by defining our user model and then creating proxy models to differentiate between different types of users. We will also define custom managers for the models to override the create_user and get_...

Overview We will be building a full-fledged school management system and deploying it to the web. We will be starting from scratch and gradually building up on the foundation of our Django knowledge. There will be a proper explanation for every code ...

Introduction to Django models In the process of learning Django, you surely will come across Django models. It is an important component of any Django application. Having good knowledge is essential to create an efficient web application using Django...
