Category Django

An introduction to Django Forms

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”…

Introduction to Django Static Files

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…

Complete Basics of the Django Admin Site

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…