mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-03-16 21:30:24 +00:00
Fixes #248: Translation page broken in Django 3.1.2
This commit is contained in:
parent
1e3db450bb
commit
e0d66d1ce2
2 changed files with 6 additions and 2 deletions
5
CHANGES
5
CHANGES
|
|
@ -2,8 +2,8 @@ Version History
|
|||
===============
|
||||
|
||||
|
||||
Version 0.9.5 (unreleased)
|
||||
--------------------------
|
||||
Version 0.9.5
|
||||
-------------
|
||||
* Fixed DeprecationWarning: invalid escape sequence (#234, Thanks @jayvdb)
|
||||
* Fixed typo in documentation (#232, thanks @timgates42)
|
||||
* Added Kyrgyz translation (#239,thanks @Soyuzbek)
|
||||
|
|
@ -13,6 +13,7 @@ Version 0.9.5 (unreleased)
|
|||
* Dropped support for Django 1.11 and Python 2
|
||||
* Test against Django 3.1a
|
||||
* Do not show Rosetta link in admin panel if user has no access to translations (#240, thanks @mondeja)
|
||||
* Django 3.1: force #changelist to display:block (#248 thanks @realsuayip and @mondeja)
|
||||
|
||||
|
||||
Version 0.9.4
|
||||
|
|
|
|||
|
|
@ -36,6 +36,9 @@ div.module {margin-bottom: 20px;}
|
|||
#toolbar form { float:left; }
|
||||
#changelist table thead th { padding: 2px 5px; }
|
||||
|
||||
#changelist {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.info-tip::after {
|
||||
content: '?';
|
||||
|
|
|
|||
Loading…
Reference in a new issue