| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | 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-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-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-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. | |||
| 2013-09-07 | Fixed a test failure introduced in 55a11683f7b094ae4fd0b9fa030d18a12657ba98. | Julien Phalip | |
| 2013-09-05 | Took advantage of django.utils.six.moves.urllib.*. | Aymeric Augustin | |
| 2013-09-01 | Converted tests for admin first form widget auto-focus to Selenium. | Ramiro Morales | |
| Refs #1707 and 1c0c879be3. | |||
| 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-29 | Fixed #20881 -- Removed contrib.auth.models.AbstractUser.get_absolute_url() | Tim Graham | |
| The definition is arbitrary and creates a broken "view on site" link in the admin if a project doesn't define such a URL. | |||
| 2013-08-22 | Fixed #20934 -- Avoided NoReverseMatch in ModelAdmin.changelist_view | Rainer Koirikivi | |
| The view tried to display links to a ModelAdmin's change_view, which resulted in NoReverseMatches if get_urls was overridden to remove the corresponding url. | |||
| 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-16 | Combine consecutive with statements | Claude Paroz | |
| Python 2.7 allows to combine several 'with' instructions. | |||
| 2013-08-02 | Fixed LogEntry.get_admin_url() for non-existent models. | Petr Dlouhý | |
| Regression introduced by [369b6fa]; refs #18169. | |||
| 2013-07-31 | Added a test for AdminSite.app_index_template; refs #8498. | SusanTan | |
| 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-07-29 | Removed most of absolute_import imports | Claude Paroz | |
| Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way. | |||
| 2013-07-27 | Fixed #11195 -- Added CSS classes to the changelist cells to allow style ↵ | Julien Phalip | |
| customizations. Thanks to akaihola, Ramiro Morales and vdboor for their work on the patch. | |||
| 2013-07-21 | Fixed #13629 -- Added CSS classes to the `<body>` tag of some admin ↵ | Thomas Sorrel | |
| templates to allow style customizations per app or per model. | |||
| 2013-07-18 | Fixed #20767 -- Fixed ModelAdmin.preserve_filters for namespaced URLs. | Loic Bistuer | |
| Thanks Collin Anderson for the report. | |||
| 2013-07-01 | Fixed a few more imports of django.utils.unittest. | Aymeric Augustin | |
| One import per line please! Refs #20680. | |||
| 2013-07-01 | Updated tests for deprecation of Option.get_(add|change|delete)_permission. | Tim Graham | |
| refs #20642. | |||
| 2013-06-27 | Prevented running some admin_view tests twice. | Tim Graham | |
| 2013-06-27 | Fixed #20664 -- Fixed a bug with raw_id_fields on Python 3. | Tim Graham | |
| Thanks jefftriplett for the report. | |||
| 2013-06-25 | Fixed #19773 - Added admin/popup_response.html template. | Javier Mansilla | |
| Thanks jimmylam@ for the suggestion. | |||
| 2013-06-19 | Merge pull request #1282 from loic/ticket6903 | Aymeric Augustin | |
| Fixed failing test on MySQL since c86a9b6 | |||
| 2013-06-19 | Fixed MySQL failing test introduced by c86a9b6 | Loic Bistuer | |
| 2013-06-18 | Merge pull request #1281 from loic/ticket6903 | Aymeric Augustin | |
| Fixed #6903 - Preserved admin changelist filters. | |||
| 2013-06-19 | Fixed #6903 - Preserve admin changelist filters after saving or deleting an ↵ | Loic Bistuer | |
| object | |||
| 2013-06-18 | Fixed #20079 -- Improve security of password reset tokens | Erik Romijn | |
| 2013-06-10 | Fixed available_apps for selenium tests. | Aymeric Augustin | |
| Refs #20483. | |||
| 2013-05-29 | Fixed #20331 -- Allowed admin actions to serve StreamingHttpResponses | Tim Graham | |
| Thanks Edwin. | |||
| 2013-05-27 | Fixed #20182 - admin lookup should treat 0 as False for __isnull | Tim Graham | |
| Thanks Benjie Chen. | |||
| 2013-05-25 | Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation. | Preston Holmes | |
| SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review. | |||
| 2013-05-21 | Use assertIsInstance in tests. | Marc Tamlyn | |
| Gives much nicer errors when it fails. | |||
| 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. | |||
