Skip to content

Tag Archives: Django-views

Django REST Framework allows us to work with regular Django views. It facilitates processing the HTTP requests and providing appropriate HTTP responses. In this section,… Read More
Passing context into your templates from class-based views is easy once you know what to look out for. There are two ways to do it… Read More
Django provides several class based generic views to accomplish common tasks. The simplest among them is TemplateView. It Renders a given template, with the context… Read More
Whenever one tries to visit a link that doesn’t exist on a website, it gives a 404 Error, that this page is not found. Similarly,… Read More
Django is a Python-based web framework that allows you to quickly create web applications. It has built-in admin interface which makes easy to work with… Read More
FormView refers to a view (logic) to display and verify a Django Form. For example, a form to register users at Geeksforgeeks. Class-based views provide… Read More
Delete View refers to a view (logic) to delete a particular instance of a table from the database. It is used to delete entries in… Read More
UpdateView refers to a view (logic) to update a particular instance of a table from the database with some extra details. It is used to… Read More
Detail View refers to a view (logic) to display one instances of a table in the database. We have already discussed basics of Detail View… Read More
List View refers to a view (logic) to display multiple instances of a table in the database. We have already discussed the basics of List… Read More
Create View refers to a view (logic) to create an instance of a table in the database. We have already discussed basics of Create View… Read More
Django is a Python-based web framework which allows you to quickly create web application without all of the installation or dependency problems that you normally… Read More
List View refers to a view (logic) to list all or particular instances of a table from the database in a particular order. It is… Read More
Update View refers to a view (logic) to update a particular instance of a table from the database with some extra details. It is used… Read More
Delete View refers to a view (logic) to delete a particular instance of a table from the database. It is used to delete entries in… Read More