| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-12-10 | Fixed #25883 -- Fixed admin deletion page summary counts for related objects. | Sergey Fedoseev | |
| 2015-10-29 | Fixed #25622 -- Accounted for generic relations in the admin to field validation | Simon Charette | |
| Thanks to Jonathan Liuti for the report and Tim Graham for the review. | |||
| 2015-09-03 | Fixed #25058 -- Added GenericRelations with related_query_name to the ↵ | sarthakmeh | |
| admin's delete confirmation page. | |||
| 2015-07-27 | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | |
| ForeignKey/OneToOneField | |||
| 2015-07-21 | Refs #24919 -- Made test models serializable for migrations. | Tim Graham | |
| 2015-07-17 | Fixed #16501 -- Added an allow_unicode parameter to SlugField. | Edward Henderson | |
| Thanks Flavio Curella and Berker Peksag for the initial patch. | |||
| 2015-05-02 | Fixed #23387 -- Kept "Save as new" button after validation errors in admin. | Adam Zapletal | |
| When "Save as new" is chosen and errors occur, only show the "Save as new" button and not the other save buttons. Thanks to Tino de Bruijn for doing the real work on this fix. | |||
| 2015-03-09 | Refs #24461 -- Added test/release notes for XSS issue in ↵ | Baptiste Mispelon | |
| ModelAdmin.readonly_fields This issue was fixed by refs #24464. | |||
| 2015-02-23 | Guaranteed removal of temporary files during tests. | Aymeric Augustin | |
| Dropped the DJANGO_TEST_TEMP_DIR environment variable. Before this change, proper removal depended on the developer passing dir=os.environ['DJANGO_TEST_TMP_DIR'] to tempfile functions. | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-10 | Fixed #13165 -- Added edit and delete links to admin foreign key widgets. | Simon Charette | |
| Thanks to Collin Anderson for the review and suggestions and Tim for the final review. | |||
| 2014-12-02 | Fixed #23934 -- Fixed regression in admin views obj parameter. | Kamil Braun | |
| 2014-11-25 | Fixed #23915 -- Made sure m2m fields through non-pk to_field are allowed in ↵ | Simon Charette | |
| the admin. refs #23754, #23862 | |||
| 2014-11-25 | Fixed #23754 -- Always allowed reference to the primary key in the admin | Simon Charette | |
| This change allows dynamically created inlines "Add related" button to work correcly as long as their associated foreign key is pointing to the primary key of the related model. Thanks to amorce for the report, Julien Phalip for the initial patch, and Collin Anderson for the review. | |||
| 2014-10-19 | Fixed #21196 -- Removed index on test field causing MySQL specific warning. | Thomas Chaumeny | |
| 2014-10-06 | Fixed #23604 -- Allowed related m2m fields to be references in the admin. | Emmanuelle Delescolle | |
| Thanks Simon Charette for review. | |||
| 2014-09-08 | Fixed #23431 -- Allowed inline and hidden references to admin fields. | Simon Charette | |
| This fixes a regression introduced by the 53ff096982 security fix. Thanks to @a1tus for the report and Tim for the review. refs #23329. | |||
| 2014-08-27 | Fixed #23329 -- Allowed inherited and m2m fields to be referenced in the admin. | Simon Charette | |
| Thanks to Trac alias Markush2010 and ross for the detailed reports. | |||
| 2014-03-25 | Fixed #22087 -- Made AdminReadonlyField respect ModelForm Meta overrides. | Ben Davis | |
| 2014-02-14 | Fixed #21924 -- Added the ability to specify a reverse order for ↵ | Klemens Mantzos | |
| admin_order_field. Thanks Klemens Mantzos for the report and initial patch. | |||
| 2014-02-11 | Fixed #2445 -- Allowed limit_choices_to attribute to be a callable. | Christopher Adams | |
| ForeignKey or ManyToManyField attribute ``limit_choices_to`` can now be a callable that returns either a ``Q`` object or a dict. Thanks michael at actrix.gen.nz for the original suggestion. | |||
| 2014-01-26 | Fixed #19774 -- Deprecated the contenttypes.generic module. | Simon Charette | |
| It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review. | |||
| 2013-11-25 | Fixed #20522 - Allowed use of partially validated object in ↵ | Jay Leadbetter | |
| ModelAdmin.add_view formset validation. Updated ModelAdmin to use form.instance when passing parent model to child inlines for add_view. There is effectively no change in the change_view since the previously passed 'obj' is the same as form.instance. Thanks to meshy for report, and EvilDMP and timo for review. | |||
| 2013-11-21 | Refs #8261 -- Fixed regression introduced by fd219fa. | Loic Bistuer | |
| ModelAdmin displayed the "View on site" link even if the Model didn't define the `get_absolute_url()` method. | |||
| 2013-11-02 | PEP8 cleanup | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-10-29 | Fixed #8261 -- ModelAdmin hook for customising the "show on site" button | Unai Zalakain | |
| ``ModelAdmin.view_on_site`` defines wether to show a link to the object on the admin detail page. If ``True``, cleverness (i.e. ``Model.get_absolute_url``) is used to get the url. If it's a callable, the callable is called with the object as the only parameter. If ``False``, not link is displayed. With the aim of maitaining backwards compatibility, ``True`` is the default. | |||
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21287 -- Fixed E123 pep8 warnings | Alasdair Nicol | |
| 2013-10-04 | Fixed #11277 -- Hid labels of fields with HiddenInput widget in admin forms. | Christopher Medrela | |
| Thanks bartTC for the report. | |||
| 2013-09-07 | Fixed #21013 -- Ensure that ModelAdmin.get_queryset is considered for the ↵ | Juan Catalano | |
| admin history view. | |||
| 2013-08-29 | Fixed #16433 -- Fixed a help_text/read only field interaction that caused an ↵ | Tim Graham | |
| admin crash. Thanks chris at cogdon.org for the report and admackin for the patch. | |||
| 2013-08-19 | Fixed #20640 -- Avoided NoReverseMatch in get_deleted_objects | Rainer Koirikivi | |
| The default delete action resulted in a NoReverseMatch if it were to list any Model with a ModelAdmin with `get_urls` overridden to remove the change url. Catching the error and not displaying the link in that case, as was already done for models with no registered admins. Thanks Keryn Knight for the report. | |||
| 2013-08-15 | Fixed #20895 -- Made check management command warn if a BooleanField does ↵ | Alasdair Nicol | |
| not have a default value Thanks to Collin Anderson for the suggestion and Tim Graham for reviewing the patch. | |||
| 2013-07-30 | Fixed #19082 -- Enabled admin field pre-population for existing objects. | Julien Phalip | |
| Thanks to msaelices and d1ffuz0r for the initial patch and tests. | |||
| 2013-06-25 | Fixed #19773 - Added admin/popup_response.html template. | Javier Mansilla | |
| Thanks jimmylam@ for the suggestion. | |||
| 2013-05-27 | Fixed #20182 - admin lookup should treat 0 as False for __isnull | Tim Graham | |
| Thanks Benjie Chen. | |||
| 2013-05-19 | Fixed #15961 -- Modified ModelAdmin to allow for custom search methods. | Bozidar Benko | |
| This adds a get_search_results method that users can override to provide custom search strategies. Thanks to Daniele Procida for help with the docs. | |||
| 2013-03-24 | Fixed test failures introduced in e16c48e001. | Aymeric Augustin | |
| 2013-02-26 | Merged regressiontests and modeltests into the test root. | Florian Apolloner | |
