How to use CreateView in Django?

Published On: 15/09/2022 | Category: Django


Hi Dev,

This tutorial will provide example of how to use createview in django. This tutorial will give you simple example of how to use class based views in django. I explained simply about how to use createview in django with example. you will learn django createview class based views example.

Django 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 comes with few lines only.

For in this example, CreateView is a class view that helps you to display a model's form with validation errors and save objects.

let's see bellow example here you will learn how to use createview in django.

Step 1: Create a Project

In this step, we’ll create a new django project using the django-admin. Head back to your command-line interface and run the following command:

django-admin startproject example

Step 2: Create a App

Now we'll create a single app called core to store a list of post names. We're keeping things intentionally basic. Stop the local server with Control+c and use the startapp command to create this new app.

python3 manage.py startapp core

Step 3: Update setting.py

Next, then update INSTALLED_APPS within our settings.py file to notify Django about the app.

Next, you need to add it in the settings.py file as follows:

settings.py

....
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'core',
]

Step 4: Creating the Model

In this step we will require the database model for storing article details in article table.Open the models.py file and add the following code:

core/models.py
from django.db import models

class Article(models.Model):
    title= models.CharField(max_length=300)
    content= models.TextField()
    pub_date = models.DateTimeField(auto_now_add= True)

Ok, all set. We can engender a migrations file for this change, then integrate it to our database via migrate.

python manage.py makemigrations
python manage.py migrate

Step 5: Create a Form

In this step We need to create a form that will be used .like add a bootstrap class and validation etc.. plus we need to add custom styling.

core/forms.py
from django import forms
from .models import *

class ArticleForm(forms.ModelForm):
    title = forms.CharField(
        widget=forms.TextInput(
            attrs={
                'class':'form-control',
                "placeholder": "Title",
            }
        ),error_messages={'required': 'The Title is required.'})
    content = forms.CharField(
        widget=forms.Textarea(
            attrs={
                'rows': 5,
                'class':'form-control',
                "placeholder": "Content",
            }
        ),error_messages={'required': 'The Content is required.'})

    class Meta:
        model = Article
        fields = ['title','content',]

Step 6: Creating the Views

In this step, we need to configure our views. The ArticleCreateView page will template and define form_class and Article model as well as, open the views.py file and add:

core/models.py
from django.shortcuts import render
from django.views.generic.edit import CreateView
from .forms import *
from .models import *

class ArticleCreateView(CreateView):
    model = Article
    form_class = ArticleForm
    template_name = 'article.html'
    success_url = "/create"

Step 7: Creating the Template

Next, then with your text editor create new templates files: core/templates/article.html file and the add:

core/templates/article.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Tuts-Station.com</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
    <style type="text/css">
        body{
            background-color: #f7fcff;
        }
    </style>
</head>
<body>
    <div class="container mt-5 pt-5">
        <div class="row d-flex justify-content-center">
            <div class="col-md-8">
                <div class="card">
                    <div class="card-header">
                        <h4>how to use CreateView in Django? - <span class="text-primary">Tuts-Station.com</span></h4>
                    </div>
                    <div class="card-body">
                        <form method = "post" enctype="multipart/form-data">
                            {% csrf_token %}
                            {{ form.as_p }}
                            <button type="submit" class="btn btn-success">Submit</button>
                        </form>
                    </div>
                </div>
            </div>
        </div>
    </div>
</body>
</html>

Step 8: Creating URLs

In this section, we need a urls.py file within the core app however Django doesn't create one for us with the startapp command. Create core/urls.py with your text editor and within this file we'll import yet-to-be-created function for each--ArticleCreateView Note as well that we set an optional URL name for each.

Here's what it looks like:

core/urls.py
from django.urls import path
from .views import ArticleCreateView

urlpatterns = [
    path('create/', ArticleCreateView.as_view()),
]

Next, we require to add a URL path for our example app which can be done by importing include and setting a path for it.

example/urls.py
from django.contrib import admin
from django.urls import path, include

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('core.urls')),
]

Run the Server

In this step, we’ll run the local development server for playing with our app without deploying it to the web.

python manage.py runserver

Next, go to the http://localhost:8000/create address with a web browser.

Django Admin Interface:



I Hope It will help you....

Happy Pythonic Coding!