mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed a couple form/formset deprecation warnings in tests.
This commit is contained in:
parent
a6a905c619
commit
a521d10322
2 changed files with 3 additions and 1 deletions
|
|
@ -252,10 +252,12 @@ class StatusNoteCBM2mForm(forms.ModelForm):
|
|||
fields = '__all__'
|
||||
widgets = {'status': forms.CheckboxSelectMultiple}
|
||||
|
||||
|
||||
class CustomErrorMessageForm(forms.ModelForm):
|
||||
name1 = forms.CharField(error_messages={'invalid': 'Form custom error message.'})
|
||||
|
||||
class Meta:
|
||||
fields = '__all__'
|
||||
model = CustomErrorMessage
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue