Vinayak Nishant

Vinayak Nishant

Django Forms

An introduction to Django Forms

Django Forms are a way to accept user input as text, images, or files from the web frontend. The straightforward example of forms that we came across was the Django admin site’s login page. Admin site took input text “username”…

Django Static Files

Introduction to Django Static Files

In our last article, we discussed Django templates. Now in this article, we are going to learn about another similar topic of Django static files. So now, if you go to any website, let’s say facebook.com, then you will see…

Django Admin Site

Complete Basics of the Django Admin Site

Django comes with a very powerful admin interface. This takes up the information regarding models from models.py and reverts back a quick-simple model-centric interface. In the admin interface, the users can interact with the Model table and perform tasks like…

Django Views

Django Views – A Beginners Guide

In this tutorial, we are going to discuss more on the Django views and what types of views we can have for our webpage. Also, we will get more information about what exactly we did in the views.py in our…