| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-25 | Fixed #23898 -- Added missing context to admin's deleted_selected view. | Redouane Zait | |
| Thanks Redouane Zait for the report. | |||
| 2014-11-03 | Fixed typos using https://github.com/vlajos/misspell_fixer | Veres Lajos | |
| 2014-11-03 | Fixed #23620 -- Used more specific assertions in the Django test suite. | Berker Peksag | |
| 2014-10-20 | Moved a test case that caused deprecation warnings. | Loic Bistuer | |
| `cache.tests.TestEtagWithAdmin` loaded views from the `admin_views` test package. This is problematic because when the `cache` test package is run in isolation, `admin_views` isn't in INSTALLED_APPS, and therefore loading its models isn't allowed since the app loading refactor. | |||
| 2014-10-06 | Fixed #23604 -- Allowed related m2m fields to be references in the admin. | Emmanuelle Delescolle | |
| Thanks Simon Charette for review. | |||
| 2014-09-30 | Fixed #7361 -- Added cancel link to admin delete views. | Nick Sandford | |
| 2014-09-26 | Fixed #8408 -- Added ModelAdmin.show_full_result_count to avoid COUNT() query. | Thomas Chaumeny | |
| Thanks lidaobing for the suggestion. | |||
| 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-08-27 | Fixed #13749 -- Added link from admin site to front-end site. | areski | |
| Thanks romankrv for the suggestion. | |||
| 2014-08-20 | Prevented data leakage in contrib.admin via query string manipulation. | Simon Charette | |
| This is a security fix. Disclosure following shortly. | |||
| 2014-08-14 | Fixed #20133 -- Added summary to admin deletion confirmation pages. | areski | |
| Thanks jonash for the suggestion and initial patch. | |||
| 2014-07-24 | Removed usage of deprecated switch_to_*() selenium methods. | Tim Graham | |
| 2014-07-14 | Fixed #22994 -- regression with generic FK + admin list_view | Anssi Kääriäinen | |
| The reason for the regression was that the GenericForeignKey field isn't something meta.get_field_by_name() should return. The reason is that a couple of places in Django expects get_field_by_name() to work this way. It could make sense to return GFKs from get_field_by_name(), but that should likely be done as part of meta refactoring or virtual fields refactoring patches. Thanks to glicerinu@gmail.com for the report and to Tim for working on the issue. | |||
| 2014-07-12 | Fixed #22939 -- Delayed admin_static backend detection | Claude Paroz | |
| Thanks generalov for the report. | |||
| 2014-07-09 | Fixed #22223 -- Prevented over-escaping URLs in reverse() | Claude Paroz | |
| And follow more closely the class of characters defined in the RFC 3986. Thanks Erik van Zijst for the report and the initial patch, and Tim Graham for the review. | |||
| 2014-07-07 | Fixed #22909 -- Removed camelCasing in some tests. | Tim Graham | |
| Thanks brylie. | |||
| 2014-06-26 | Fixed #22894 -- Made admin add related/raw ID fields widgets customizable. | Riccardo Magliocchetti | |
| Decoupled behavior and style from the RelatedFieldWidgetWrapper and ForeignKeyRawIdWidget. | |||
| 2014-06-21 | Removed some apps from ALWAYS_INSTALLED_APPS | Claude Paroz | |
| 2014-06-13 | Fixed #6327 -- Added has_module_permission method to BaseModelAdmin | Maxime Turcotte | |
| Thanks chrj for the suggestion. | |||
| 2014-06-11 | Fixed #22653 -- Added some database feature flags to tests. | Tim Graham | |
| Thanks Rahul Priyadarshi. | |||
| 2014-06-09 | Removed unused import. | Tim Graham | |
| 2014-06-09 | Fixed #20420 -- Normalized query counts on Oracle. | Aymeric Augustin | |
| This is achieved by inserting a fake entry in connection.queries when not releasing a savepoint (since Oracle doesn't support that operation.) Also removed the can_release_savepoints feature that was recently added, but is superseded by this solution. | |||
| 2014-06-02 | Fixed #11776 -- Added CSS class for non-field/top of form errors. | Nick Presta | |
| Thanks Daniel Pope for the suggestion. | |||
| 2014-05-16 | Fixed #22266 - quote PK before redirecting away from add_view ↵ | Stas Rudakou | |
| (django.contrib.admin) | |||
| 2014-05-15 | Harmonized some PEP 0263 coding preambles | Claude Paroz | |
| 2014-05-08 | Replaced vendor checks by three feature flags. | Aymeric Augustin | |
| 2014-04-26 | Fix many many typos in comments throughout the codebase | Alex Gaynor | |
| 2014-04-24 | Fixed #22499 -- Fixed a typo in an admin_views test that caused failure on ↵ | Tim Graham | |
| Oracle. | |||
| 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-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-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. | |||
| 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. | |||
