blog image

In this tutorial we will learn about django forms and implemenation in real projects.

In django we can implement form concept using two ways

1.Forms API

2.Model API

 

1.Forms API.

you can make epython class to make form, which is simple ,secure and validation also too.

Django handles three distict parts of the work involved in forms like

i.preparing and restructuring data to make it ready for rendering

ii.creating HTML forms for the data

iii.receving and processing submitted forms and data from client.

Create a django forms using form class

from django import forms
class StudentForm(forms.Form):
    """syntax 
    label=forms.fieldType()
    """
    name=forms.CharField()
    roll=forms.IntegerField(label='roll number')

 then after creating forms , you can create form object in views.py file and render it into the template. remember that , form

 object won't provide form tag and button you need to write them manually.

 

 


About author

author image

Amrit Panta

Python developer, content writer



3 Comments

Amanda Martines 5 days ago

Exercitation photo booth stumptown tote bag Banksy, elit small batch freegan sed. Craft beer elit seitan exercitation, photo booth et 8-bit kale chips proident chillwave deep v laborum. Aliquip veniam delectus, Marfa eiusmod Pinterest in do umami readymade swag. Selfies iPhone Kickstarter, drinking vinegar jean.

Reply

Baltej Singh 5 days ago

Drinking vinegar stumptown yr pop-up artisan sunt. Deep v cliche lomo biodiesel Neutra selfies. Shorts fixie consequat flexitarian four loko tempor duis single-origin coffee. Banksy, elit small.

Reply

Marie Johnson 5 days ago

Kickstarter seitan retro. Drinking vinegar stumptown yr pop-up artisan sunt. Deep v cliche lomo biodiesel Neutra selfies. Shorts fixie consequat flexitarian four loko tempor duis single-origin coffee. Banksy, elit small.

Reply

Leave a Reply

Scroll to Top