Last active
June 12, 2018 05:54
-
-
Save taranjeet/dca781f2726abaa15a59a079b6e0744c to your computer and use it in GitHub Desktop.
Django Library: Book Normal Form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django import forms | |
class BookForm(forms.Form): | |
name = forms.CharField( | |
label='Book Name', | |
widget=forms.TextInput(attrs={ | |
'class': 'form-control', | |
'placeholder': 'Enter Book Name here' | |
}) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment