Createview - Class Based Views Django Last Updated : 28 Apr, 2025 Comments Improve Suggest changes Like Article Like Report 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 in Create View – Function based Views Django. Class-based views provide an alternative way to implement views as Python objects instead of functions. They do not replace function-based views, but have certain differences and advantages when compared to function-based views: Organization of code related to specific HTTP methods (GET, POST, etc.) can be addressed by separate methods instead of conditional branching.Object oriented techniques such as mixins (multiple inheritance) can be used to factor code into reusable components. Class based views are simpler and efficient to manage than function-based views. A function based view with tons of lines of code can be converted into a class based views with few lines only. This is where Object Oriented Programming comes into impact. Django Create View - Class Based Views Illustration of How to create and use create view using an Example. Consider a project named geeksforgeeks having an app named geeks. Refer to the following articles to check how to create a project and an app in Django. How to Create a Basic Project using MVT in Django?How to Create an App in Django ? After you have a project and an app, let's create a model of which we will be creating instances through our view. In geeks/models.py, Python3 # import the standard Django Model # from built-in library from django.db import models # declare a new model with a name "GeeksModel" class GeeksModel(models.Model): # fields of the model title = models.CharField(max_length = 200) description = models.TextField() # renames the instances of the model # with their title name def __str__(self): return self.title After creating this model, we need to run two commands in order to create Database for the same. Python manage.py makemigrations Python manage.py migrate Class Based Views automatically setup everything from A to Z. One just needs to specify which model to create View for and the fields. Then Class based CreateView will automatically try to find a template in app_name/modelname_form.html. In our case it is geeks/templates/geeks/geeksmodel_form.html. Let's create our class based view. In geeks/views.py, Python3 from django.views.generic.edit import CreateView from .models import GeeksModel class GeeksCreate(CreateView): # specify the model for create view model = GeeksModel # specify the fields to be displayed fields = ['title', 'description'] Now create a url path to map the view. In geeks/urls.py, Python3 from django.urls import path # importing views from views..py from .views import GeeksCreate urlpatterns = [ path('', GeeksCreate.as_view() ), ] Create a template in templates/geeks/geeksmodel_form.html, html <form method="POST" enctype="multipart/form-data"> <!-- Security token --> {% csrf_token %} <!-- Using the formset --> {{ form.as_p }} <input type="submit" value="Submit"> </form> Let's check what is there on http://localhost:8000/ Now let's try to enter data in this form, Bingo.! Create view is working and we can verify it using the instance created through the admin panel. This way one can create view for a model in Django. Comment More infoAdvertise with us Next Article ListView - Class Based Views Django N NaveenArora Follow Improve Article Tags : Python Python Django Django-views Practice Tags : python Similar Reads Views In Django Django Views are one of the vital participants of the MVT Structure of Django. As per Django Documentation, A view function is a Python function that takes a Web request and returns a Web response. This response can be the HTML contents of a Web page, a redirect, a 404 error, an XML document, an ima 6 min read Django CRUD 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 will find with other frameworks. Django is based on MVT (Model View Template) architecture and revolves around CRUD (Create, Retrieve, Up 7 min read Create View Create View refers to a view (logic) to create an instance of a table in the database. It is just like taking an input from a user and storing it in a specified table. Django provides extra-ordinary support for Create Views but let's check how it is done manually through a function-based view. This 3 min read List View A List View is a type of Django view used to display multiple instances of a model (i.e., rows from a database table). It is commonly used when you need to present a list of items on a page, for example, listing products on an eCommerce site. While Django provides built-in support for List Views usi 3 min read Detail View Detail View refers to a view (logic) to display a particular instance of a table from the database with all the necessary details. It is used to display multiple types of data on a single page or view, for example, profile of a user. Django provides extra-ordinary support for Detail Views but let's 3 min read Update View 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 to update entries in the database for example, updating an article at geeksforgeeks. So Update view must display the old data in the form and let user update the data 4 min read Delete View 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 the database for example, deleting an article at geeksforgeeks. So Delete view must show a confirmation message to the user and should delete the instance automatically. 3 min read Class Based Generic Views Django Class-Based Views (CBVs) allow developers to handle HTTP requests in a structured and reusable way. With CBVs, different HTTP methods (like GET, POST) are handled as separate methods in a class, which helps with code organization and reusability.Advantages of CBVsSeparation of Logic: CBVs separate d 6 min read Create view:Class Based views 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 in Create View â Function based Views Django. Class-based views provide an alternative way to implement views as Python objects instead of functions. They do not rep 3 min read List View:Class Based Views 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 View in List View â Function based Views Django. Class-based views provide an alternative way to implement views as Python objects instead of functions. They do n 4 min read Detail View:Class Based Views 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 in Detail View â Function based Views Django. Class-based views provide an alternative way to implement views as Python objects instead of functions. They do not 3 min read Update View:Class Based Views 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 update entries in the database, for example, updating an article at geeksforgeeks. We have already discussed basics of Update View in Update View â Function based V 3 min read Form View:Class Based Views 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 an alternative way to implement views as Python objects instead of functions. They do not replace function-based views, but have certain difference 3 min read Like