Django:1.10
Il était listé ci-dessous.
Widgets | Django documentation | Django https://docs.djangoproject.com/ja/1.10/ref/forms/widgets/#customizing-widget-instances
Je vois, je pense que je devrais le spécifier comme attrs.
forms.py
class LoginForm(forms.Form):
username = forms.CharField(label='LOGIN_ID', max_length=30,
widget=forms.TextInput(
attrs={'placeholder':'Nom d'utilisateur', 'class':'class_name'}))
password = forms.CharField(
label='PASSWORD', max_length=128,
widget=forms.PasswordInput(
attrs={'placeholder':'mot de passe', 'class':'class_name'}))
L'espace réservé s'affiche.
Recommended Posts