<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/contrib/admin, branch main</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=main</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2026-04-29T15:28:13Z</updated>
<entry>
<title>Fixed #35951 -- Mentioned server timezone in admin DateTime widgets.</title>
<updated>2026-04-29T15:28:13Z</updated>
<author>
<name>Vedran Karacic</name>
<email>karacicvedran@gmail.com</email>
</author>
<published>2025-12-12T09:04:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=61941b6fc172933f425e8ba76bab444ab9b313e4'/>
<id>urn:sha1:61941b6fc172933f425e8ba76bab444ab9b313e4</id>
<content type='text'>
The existing note that is shown to the users when entering a time value
from a different timezone than the server's timezone was not descriptive
enough and led to confusion. This commit updates the note to explicitly
state that the user should enter times in the server's timezone.
</content>
</entry>
<entry>
<title>Refs #15759 -- Fixed ModelAdmin.list_editable form submission for non-editable instances.</title>
<updated>2026-04-28T17:44:04Z</updated>
<author>
<name>Artyom Kotovskiy</name>
<email>artyomkotovskiy@gmail.com</email>
</author>
<published>2026-04-25T04:00:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5b3cfce51770f46c6dc100e9be7f199a37176762'/>
<id>urn:sha1:5b3cfce51770f46c6dc100e9be7f199a37176762</id>
<content type='text'>
Added formset that excludes objects for which
user has no permission for POST formset as well.

Fixed regression test: the test was not simulating
real behaviour properly. By providing full form
data for the post request we skipped the part
where the user was actually limited in permissions
and only modified some of the rows.

Improved tests by getting rid of obj.id % 2
approach for granting permissions per object
for users, since it is not the safest.
Instead granting permissions simply by 'alive'
parameter, which is simpler and more stable.

Bug in 84db026228413dda4cd195464554d51c0b208e32.
</content>
</entry>
<entry>
<title>Fixed #10919 -- Added delete_confirmation_max_display to ModelAdmin.</title>
<updated>2026-04-23T02:22:55Z</updated>
<author>
<name>Rodrigo Vieira</name>
<email>rodrigo.vieira@gmail.com</email>
</author>
<published>2026-04-22T21:53:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=fa2a3de6ede10b005fc2c1d23f4cffb53eaec425'/>
<id>urn:sha1:fa2a3de6ede10b005fc2c1d23f4cffb53eaec425</id>
<content type='text'>
The new ModelAdmin.delete_confirmation_max_display attribute allows
limiting the number of related objects shown on the delete confirmation
page. When the limit is reached, a "…and N more objects." message is shown.

The feature relies on a new truncated_unordered_list template filter
added to django.contrib.admin.templatetags.admin_filters.

Thanks Jacob Tyler Walls for the review and guidance, Tobias McNulty for the report,
and terminator14 for the solution suggested.
</content>
</entry>
<entry>
<title>Refs #10919 -- Refactored walk_items as module-level _walk_items and added truncated_unordered_list filter.</title>
<updated>2026-04-23T02:22:55Z</updated>
<author>
<name>Rodrigo Vieira</name>
<email>rodrigo.vieira@gmail.com</email>
</author>
<published>2026-04-22T21:53:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a586f03f36f511064f171c0e30f4ca2ebfd60085'/>
<id>urn:sha1:a586f03f36f511064f171c0e30f4ca2ebfd60085</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #35870 -- Made blank choice label in forms more accessible.</title>
<updated>2026-04-22T21:06:29Z</updated>
<author>
<name>Annabelle Wiegart</name>
<email>annabelle.wiegart@proton.me</email>
</author>
<published>2026-01-18T19:03:28Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=63c56cda133a85a158502891c40465bc0331d3d9'/>
<id>urn:sha1:63c56cda133a85a158502891c40465bc0331d3d9</id>
<content type='text'>
Added new constant django.db.models.fields.BLANK_CHOICE_LABEL for
an accessible and translatable blank choice label in forms.
Deprecated django.db.models.fields.BLANK_CHOICE_DASH constant.
Added the immediately deprecated transitional setting
USE_BLANK_CHOICE_DASH.

Co-Authored-By: Marijke Luttekes &lt;mail@marijkeluttekes.dev&gt;
</content>
</entry>
<entry>
<title>Fixed #35943 -- Replaced unload event listener with pagehide.</title>
<updated>2026-04-22T14:14:40Z</updated>
<author>
<name>Amar</name>
<email>100243770+aadeina@users.noreply.github.com</email>
</author>
<published>2026-03-01T01:58:57Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=e1bdebc84ee7cacd40b820e862fd504054619403'/>
<id>urn:sha1:e1bdebc84ee7cacd40b820e862fd504054619403</id>
<content type='text'>
Co-authored-by: Peter van der Does &lt;peter@oneilinteractive.com&gt;
Co-authored-by: Jacob Walls &lt;jacobtylerwalls@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fixed #15759 -- Excluded fields by per-object permissions for ModelAdmin.list_editable.</title>
<updated>2026-04-22T14:13:58Z</updated>
<author>
<name>Artyom Kotovskiy</name>
<email>artyomkotovskiy@gmail.com</email>
</author>
<published>2026-04-10T04:27:14Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=84db026228413dda4cd195464554d51c0b208e32'/>
<id>urn:sha1:84db026228413dda4cd195464554d51c0b208e32</id>
<content type='text'>
Instead of going over all objects in a queryset and filtering
by user permissions, added skipping while saving the formset
so there is no need to refetch objects again.
</content>
</entry>
<entry>
<title>Refs #15759 -- Factored out _save_formset() in ModelAdmin.</title>
<updated>2026-04-22T14:13:58Z</updated>
<author>
<name>Artyom Kotovskiy</name>
<email>artyomkotovskiy@gmail.com</email>
</author>
<published>2026-04-10T04:23:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=512e348bb271878a1e4f1ab6ae187a22dd16222b'/>
<id>urn:sha1:512e348bb271878a1e4f1ab6ae187a22dd16222b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Formatted JavaScript files.</title>
<updated>2026-04-19T10:45:56Z</updated>
<author>
<name>Tom Carrick</name>
<email>tom@carrick.eu</email>
</author>
<published>2026-04-19T08:54:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=fc0a0ebd4fe573299a5f978e77fa3bca8424f661'/>
<id>urn:sha1:fc0a0ebd4fe573299a5f978e77fa3bca8424f661</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Formatted CSS files.</title>
<updated>2026-04-18T12:46:37Z</updated>
<author>
<name>Tom Carrick</name>
<email>tom@carrick.eu</email>
</author>
<published>2026-04-18T11:13:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=241b8e1aab7fc71018a059467b2ba17bce6556cc'/>
<id>urn:sha1:241b8e1aab7fc71018a059467b2ba17bce6556cc</id>
<content type='text'>
</content>
</entry>
</feed>
