我有一个已经创建了一些模型的Django项目,我想在它们上面加入django-modeltransalation。我安装了模块并在其中一个应用程序中创建了translation.py
并运行python manage.py sync_translation_fields
,一切似乎都很好,但是django管理工具停止工作并且为唯一翻译的模型出现此错误:
Something's wrong with your database installation. Make sure the appropriate database tables have been created, and make sure the database is readable by the appropriate user.
对于同一应用程序的所有其他模型,我收到此错误:
TypeError: _clone() got an unexpected keyword argument '_rewrite'
[18/Jun/2018 16:25:50] "GET /es/admin/GeneralApp/airport/ HTTP/1.1" 500 394793
管理工具可以与其他应用程序一起使用。