mbi / django-rosetta

Rosetta is a Django application that eases the translation process of your Django projects
MIT License
1.07k stars 195 forks source link

Translation page broken in Django 3.1.2 #248

Closed realsuayip closed 4 years ago

realsuayip commented 4 years ago

In Django 3.1.2, the translation page is broken (see screenshot), presumably because of the changes made in this pull request: https://github.com/django/django/pull/13409/

display: flex rule in #changelist block seems to be the problem.

screenshot

mondeja commented 4 years ago

I can reproduce this with the same version of Django. I have solved this defining the next rule extending the rosetta template, but this need to be properly handled in the library or in Django:

#changelist {
  display: block !important;
}

EDIT: Seems the bug is coming from this commit.

mbi commented 4 years ago

Thank you both for tracking this down.

mbi commented 4 years ago

(Just released 0.9.5, including this fix.)