diff options
| author | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-10-30 09:27:57 +0100 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-10-31 06:38:07 +0100 |
| commit | 2c029c718f45341cdd43ee094c24488743c633e6 (patch) | |
| tree | a0b58f4414e9439437fcd9aabb36e75d70d7d10c /tests/admin_views/admin.py | |
| parent | 0eaaadd47fa00baabe12be3ed736aa016b6d327e (diff) | |
Fixed #35876 -- Displayed non-ASCII fieldset names when rendering ModelAdmin.fieldsets.
Thank you to Namhong Kim for the report, and to Mariusz Felisiak and Marijke Luttekes for the review.
Regression in 01ed59f753139afb514170ee7f7384c155ecbc2d.
Diffstat (limited to 'tests/admin_views/admin.py')
| -rw-r--r-- | tests/admin_views/admin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/admin_views/admin.py b/tests/admin_views/admin.py index 0ea64d594a..5e14069bae 100644 --- a/tests/admin_views/admin.py +++ b/tests/admin_views/admin.py @@ -237,6 +237,7 @@ class ArticleAdmin(ArticleAdminWithExtraUrl): "Some other fields", {"classes": ("wide",), "fields": ("date", "section", "sub_section")}, ), + ("이름", {"fields": ("another_section",)}), ) # These orderings aren't particularly useful but show that expressions can |
