If you have multiple forms
from django import forms class NameForm(forms.Form): your_name = forms.CharField(label=\'Your name\', max_length=100) class Sec
If you use a unique prefix for each form, then the fields will all have unique ids.
form1 = NameForm(prefix='name') form2 = SecondNameForm(prefix='second_name')