[1.7.x] Fixed #22622 -- Added ugettext_lazy import in docs
Backport of 7271f5db78
from master
This commit is contained in:
parent
2a66d12e77
commit
0504d19db0
|
@ -513,6 +513,8 @@ attributes of the inner ``Meta`` class if you want to further customize a field.
|
||||||
For example if you wanted to customize the wording of all user facing strings for
|
For example if you wanted to customize the wording of all user facing strings for
|
||||||
the ``name`` field::
|
the ``name`` field::
|
||||||
|
|
||||||
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
class AuthorForm(ModelForm):
|
class AuthorForm(ModelForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Author
|
model = Author
|
||||||
|
|
Loading…
Reference in New Issue