More On Forms In Django and API In Forms
I hope you have read our earlier post on creating basic forms in django.In this post we will go in detail. More On Fields In FormsĀ Consider a below ContactForm class which we can be used to implement “contact me” functionality on a any personal website. from django import forms class ContactForm(forms.Form): subject = forms.CharField(max_length=100) …