I have one form:
class FormLogin(forms.Form): email = forms.EmailField(max_length=150) name = forms.CharField(max_length=20)
How can I only place an email field in my template? I tried this:
{{ form.fields.email }}
But it returns <django.forms.fields.CharField object at 0x00000000043BCEB8> .
source share