Django Admin Form Validation Error Example

Hi Dev,
This article is focused on django admin form validation error example. you can see django admin form validation. We will use django admin form validation error example. I’m going to show you about django admin form validation example tutorial.
We'll observe a form validation problem on the admin side in this section.
Let's see bellow example I explained simply about django admin form validation error example.
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 exampleapp
Step 2: Create a App
Now we'll create a single app called polls 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, In this step we require to do two things in our settings.py file, One is our installed app name Add the below lines to your settings.py file:
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'core', ]
Step 4: Create a Model
Now go for the models we will We'll call our single model Employee And finally set __str__ to display the name of the Employee in admin interface.
core/models.pyfrom django.db import models # Create your models here. class Employee(models.Model): emp_id = models.IntegerField(unique=True) name = models.CharField(max_length=200) assignment_assign = models.CharField(max_length=500) start_date = models.DateField() end_date = models.DateField() def __str__(self): return self.emp_id
Step 5: Create a Form
First of all in this step we will create a new file called forms.py and create a Django form you need to use Django Form Class
core/forms.pyfrom django import forms from .models import Employee class EmployeeForm(forms.ModelForm): emp_id = forms.CharField(label='Employee Id', widget=forms.TextInput(attrs={ 'class': 'form-control' }) ) name = forms.CharField(label='Name', widget=forms.TextInput(attrs={ 'class': 'form-control' }) ) assignment_assign = forms.CharField(label='Assignment Assign', widget=forms.TextInput(attrs={ 'class': 'form-control' }) ) start_date = forms.CharField(label='Start Date', widget=forms.TextInput(attrs={ 'class': 'form-control' }) ) end_date = forms.CharField(label='End Date', widget=forms.TextInput(attrs={ 'class': 'form-control' }) ) class Meta: model = Employee fields = ['emp_id', 'name', 'assignment_assign', 'start_date', 'end_date']
Step 6: Creating the Views
In this step, we need to create the views for performing the post request data is to cleaned to cleaned_data method.Open the core/views.py file and add:
core/views.pyfrom django.shortcuts import render from .forms import EmployeeForm def admin_vali(request): if request.method == "POST": form = EmployeeForm(request.POST) if form.is_valid(): print('Employee Id:', form.cleaned_data['emp_id']) print('Employee Name:', form.cleaned_data['name']) print('Assignment Assign:', form.cleaned_data['assignment_assign']) print('Start Date:', form.cleaned_data['start_date']) print('End Date:', form.cleaned_data['end_date']) form.save() else: form =EmployeeForm() return render(request,'form.html',{'form':form})
Step 7: Creating the Templates
Next, open the core/templates/form.html file and the add:
<!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"> <div class="row d-flex justify-content-center"> <div class="col-md-10"> <div class="card"> <div class="card-header"> <h3>Django Admin Form Validation Error Example - <span class="text-primary">Tuts-Station.com</span></h3> </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’ll create the urls to access our views.Go to the urls.py core/urls.py file and update it as follows:
core/urls.pyfrom django.urls import path, include from . import views urlpatterns = [ path('admin-form', views.admin_vali,name='admin_vali'), ]
Next, we will require the modify the urls.py your root preoject folder lets update the file.
exampleapp/urls.pyfrom 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 url address bar with a web browser.
http://localhost:8000/admin-formOutput

I Hope It will help you....