summaryrefslogtreecommitdiff
path: root/django/contrib/admin
AgeCommit message (Collapse)Author
2016-05-17Updated translation catalogsClaude Paroz
2016-05-17Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner
Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP.
2016-05-17Updated admin's jQuery to 2.2.3.Tim Graham
2016-05-13Fixed #26612 -- Fixed SelectFilter2 buttons changing URL.David Sanders
2016-05-12Fixed #26277 -- Added support for null values in ChoicesFieldListFilter.Vincenzo Pandolfo
2016-05-11Refs #24227 -- Partially reverted replacement of M2M isinstance checks by ↵Collin Anderson
field.many_to_many. This fixes django-taggit and reflects some places where duck-typing may not be appropriate.
2016-05-07Fixed #26449 -- Merged admin's FORMFIELD_FOR_DBFIELD_DEFAULTS with ↵marysia
formfield_overrides. Useful for overriding the DateTimeField widget.
2016-05-07Fixed #26582 -- Added prettier admin display for list values.Dan Watson
2016-05-04Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz
Thanks Tim Graham for completing the initial patch.
2016-05-04Fixed #26558 -- Removed need for request context processor on admin login page.Dan Stephenson
2016-05-03Fixed #26577 -- Disabled implicit wait of Selenium tests where appropriate.Simon Charette
2016-05-03Fixed #26575 -- Disabled SelectFilter buttons when inactive.David Sanders
2016-05-03Fixed #26561 -- Improved admin's JavaScript SelectBox performance on large ↵David Sanders
lists.
2016-04-30Pulled translations from TransifexClaude Paroz
2016-04-30Removed deprecated Chinese language codes for contrib appsClaude Paroz
Refs #18149.
2016-04-30Fixed source path in contrib.admin translation catalogClaude Paroz
Refs #26341.
2016-04-23Fixed #26533 -- Renamed Widget._format_value() to format_value().Tim Graham
2016-04-20Fixed #16327 -- Redirected "Save as new" to change view instead of the ↵Markus Amalthea Magnuson
changelist.
2016-04-15Fixed #19567 -- Added JavaScriptCatalog and JSONCatalog class-based viewsClaude Paroz
Thanks Cristiano Coelho and Tim Graham for the reviews.
2016-04-15Removed unused AdminCommaSeparatedIntegerFieldWidget.Tim Graham
Unused since f212b24b6469b66424354bf970f3051df180b88d.
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-06Fixed #26473 -- chmod -x on django/contrib/admin/static/admin/fonts/LICENSE.txtTim Graham
2016-04-06Fixed #25856 -- Added %B support to Date.strftime.akoskaaa
This enables the admin to display the correct localized month name if %B is used in the date format.
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-03-29Fixed #21734 -- Handled ProtectedError in a POST to admin's delete_selected ↵Akshesh
action.
2016-03-25Fixed #26387 -- Restored the functionality of the admin's raw_id_fields in ↵Tim Graham
list_editable.
2016-03-24Removed unused xmlhttp from admin's core.js.Collin Anderson
2016-03-21Fixed #26235 -- Handled ProtectedError in a POST to admin's delete_view().Akshesh
2016-03-19Refs #24227 -- Replaced M2M isinstance checks by field.many_to_manyClaude Paroz
Thanks Markus Holtermann, Collin Anderson and Tim Graham for the reviews.
2016-03-15Fixed #25364 -- Added generic way to test on all browsers supported by selenium.Akshesh
Browser names should be passed as a comma separated list to the --selenium flag. Thanks Tim Graham, Simon Charette and Moritz Sichert for review and discussion.
2016-03-01Fixed #26229 -- Improved check for model admin check admin.E124Alasdair Nicol
Refs #22792
2016-02-25Fixed #26231 -- Used .get_username in admin login template.Sjoerd Job Postmus
2016-02-19Fixed #25653 -- Made --selenium run only the selenium tests.Akshesh
2016-02-12Removed unneeded hint=None/obj=None in system check messages.Tim Graham
2016-02-05Fixed #26176 -- Fixed E123 flake8 warnings.Tim Graham
2016-02-04Fixed #13875 -- Made admin's submit_row template tag pass whole context.Federico Capoano
2016-02-02Fixed #25731 -- Removed unused choices kwarg for Select.render()jpic
2016-02-02Fixed #23971 -- Added "Has date"/"No date" choices for DateFieldListFilter.rynomster
2016-02-02Fixed #24316 -- Made ModelAdmin.list_display callables use an appropriate ↵Tim Graham
CSS class name. Thanks Berker Peksag for the review.
2016-02-01Fixed #11313 -- Made ModelAdmin.list_editable more resilient to concurrent ↵bphillips
edits. Allowed admin POSTed bulk-edit data to use modeladmin.get_queryset() so that the ids in the POST data have a chance to match up even if the objects on the current page changed based on the ordering.
2016-02-01Fixed incorrect permissions check for admin's "Save as new".Myk Willis
This is a security fix.
2016-02-01Fixed #7923 -- Added links to objects displayed by ModelAdmin.raw_id_fields.Hugo Osvaldo Barrera
2016-01-30Fixed #14402 -- Removed clearing of help_text for ManyToManyField's ↵Alexander Gaevsky
raw_id_fields.
2016-01-25Corrected comment about SelectFilter2's dependencies.Nik Nyby
2016-01-25Fixed #26125 -- Fixed E731 flake warnings.userimack
2016-01-22Fixed #24116 -- Moved AdminSite.check_dependencies() to system checks.Vincenzo Pandolfo
2016-01-22Lowercased "actions" of "Recent actions" and "My actions" in admin index ↵Jan Pieter Waagmeester
sidebar.
2016-01-21Fixed #26060 -- Fixed crash with reverse OneToOneField in ↵Alexander Gaevsky
ModelAdmin.readonly_fields.
2016-01-14Fixed an incorrectly used translation string in admin changeform.Raphael Michel
This uses a translation string that already exists (used in the <title> of the same page) and fixes a grammer mistake for German and possibly other languages.
2016-01-11Refs #494 -- Fixed a flaky admin_inlines tests.Tim Graham