| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-07 | Fixed #21084 -- Used proxy model's content type for admin log entries. | Alejandro Gómez | |
| 2014-04-06 | Fixed #21977 -- Deprecated SimpleTestCase.urls | Anubhav Joshi | |
| 2014-04-03 | Fixed #22218 -- Deprecated django.conf.urls.patterns. | Tim Graham | |
| Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews. | |||
| 2014-03-31 | Fixed #22360 -- Fixed two non-deterministic tests in Python 3.4. | Loic Bistuer | |
| The order of admin's changelist filters in the querystring relied on dict ordering. | |||
| 2014-03-31 | Fixed #21795 -- Made add_preserved_filters account for url prefixes. | Loic Bistuer | |
| Thanks to trac username honyczek for the report. Refs #6903. | |||
| 2014-03-30 | Corrected many style guide violations that the newest version of flake8 catches | Alex Gaynor | |
| 2014-03-25 | Fixed #22087 -- Made AdminReadonlyField respect ModelForm Meta overrides. | Ben Davis | |
| 2014-03-22 | Fixed #22241 -- Selectively added line breaks in admin read-only fields | Claude Paroz | |
| When content is supposed to contain HTML, we do not try to add line breaks in read-only contents. Thanks Alexander Todorov for the report. | |||
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-03-03 | Fixed #22135 -- Added ModelAdmin.get_changeform_initial_data(). | Greg Chapple | |
| Allows custom behavior for setting initial form data in ModelAdmin. By default, initial data is set via GET params. The new method allows this behavior to be overridden. Thanks egasimus for the suggestion. | |||
| 2014-03-03 | Edited contrib.admin check messages for grammar and consistency. | Russell Keith-Magee | |
| 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-02-10 | Fixed #21371 -- Added the block.super to admin bodyclass blocks. | julien 'pouete' Godin | |
| Thanks Keryn Knight for the report. | |||
| 2014-02-04 | Removed the this_is_the_login_form hack | Claude Paroz | |
| Refs #21911. Now that we have a more traditional login form, we don't need any more a special field telling us we are dealing with the login form. | |||
| 2014-02-04 | Fixed #21911 -- Made admin views redirect to login when needed | Claude Paroz | |
| Historically, the Django admin used to pass through the request from an unauthorized access to the login view directly. Now we are using a proper redirection, which is also preventing inadvertantly changing data when POSTing login data to an admin view when user is already authorized. Thanks Marc Tamlyn and Tim Graham for the reviews. | |||
| 2014-02-04 | Made staff_member_required redirect to login | Claude Paroz | |
| Refs #21911. | |||
| 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. | |||
| 2014-01-20 | Fixed #16905 -- Added extensible checks (nee validation) framework | Russell Keith-Magee | |
| This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844. | |||
| 2014-01-05 | Removed useless model definitions. | Aymeric Augustin | |
| Surprisingly, this commit doesn't change any behavior at all. When a model is defined with the same name as another model in the same app, the definition of the first class is bound to the name of the class regardless of the definition of the second class. | |||
| 2013-12-23 | Imported override_settings from its new location. | Aymeric Augustin | |
| 2013-12-14 | Fixed E127 pep8 warnings. | Loic Bistuer | |
| 2013-12-11 | Fixed #21510 -- Readded search reset link in changelist search bar | Claude Paroz | |
| Thanks moritz.pfeiffer at alp-phone.ch for the report and Tim Graham for the initial patch. | |||
| 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-23 | Fixed test breakage under python 3 introduced by ↵ | Baptiste Mispelon | |
| a480f8320a5b36501bfd0e8cd70b8dc04adf2d08. | |||
| 2013-11-21 | Fixed #21431 -- GenRel->FK list_filter regression in admin | Anssi Kääriäinen | |
| Report, analysis and tests from stephenmcd. | |||
| 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 | PEP8 | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 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-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-24 | Fixed #21299 - Changed filters from title to capfirst on admin inline formsets. | Renato Oliveira | |
| Previously there was a mixture of the two which resulted in inconsistent casing. | |||
| 2013-10-24 | Start attacking E231 violations | Alex Gaynor | |
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-23 | Fixed E225 pep8 warnings. | Tim Graham | |
| 2013-10-21 | Removed some direct settings manipulations in tests; refs #21230. | Bouke Haarsma | |
| 2013-10-21 | Fixed #21288 -- Fixed E126 pep8 warnings | Alasdair Nicol | |
| 2013-10-18 | Fixed #21287 -- Fixed E123 pep8 warnings | Alasdair Nicol | |
| 2013-10-10 | Fixed "redefinition of unused 'foo' from line X" pyflakes warnings. | Tim Graham | |
| 2013-10-04 | Fixed #11277 -- Hid labels of fields with HiddenInput widget in admin forms. | Christopher Medrela | |
| Thanks bartTC for the report. | |||
| 2013-09-19 | Fixed #9532 -- Added min_num and validate_min on formsets. | yokomizor | |
| Thanks gsf for the suggestion. | |||
| 2013-09-16 | Fixed #17627 -- Renamed util.py files to utils.py | Tim Graham | |
| Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor Kołodziej for the initial patch. | |||
| 2013-09-11 | Fixed #21056 -- AdminSite.app_index no longer blindly accepts any ↵ | Keryn Knight | |
| app-labelish input. | |||
| 2013-09-09 | Fixed #21063 -- AdminSite app_index should be fail early if the user has no ↵ | Keryn Knight | |
| permissions. | |||
| 2013-09-09 | Added a test to show that the user.is_staff check in admin base.html is ↵ | Tim Graham | |
| necessary. refs #21067 | |||
| 2013-09-08 | Removed some more unused local vars | Alex Gaynor | |
| 2013-09-08 | Removed a ton of unused local vars | Alex Gaynor | |
| 2013-09-07 | Fixed #21013 -- Ensure that ModelAdmin.get_queryset is considered for the ↵ | Juan Catalano | |
| admin history view. | |||
