Closed adrien-delhorme closed 5 years ago
On a fresh project with newsblog addon I'm not able to reproduce it. @adrien-delhorme could you please add more information such as a version of newsblog, django-cms, and django, and others which will help with reproducing it?
When I create an article, without choosing an author, the save method tries to
get_or_create
it. A default dictionary that defines aname
is passed toget_or_create
, but due to django-parler,name
is not an attribute of the Person model (it is intranslations__name
). So I get the errorFieldError: Invalid field name(s) for model Person: 'name'.