summaryrefslogtreecommitdiff
path: root/django/contrib/admin
AgeCommit message (Collapse)Author
2016-12-14Fixed #27313 -- Allowed overriding admin popup response template.Michael Scott
2016-12-07Refs #17235 -- Made MultiPartParser leave request.POST immutable.Vinay Karanam
2016-12-06Fixed #18729 -- Made admin changelist not use distinct() if a list_filter ↵nmhung89
doesn't require it.
2016-11-25Fixed #27532 -- Deprecated Model._meta.has_auto_fieldAdam Chainz
2016-11-24Fixed #27531 -- Added block.super to admin's delete confirmation extrahead ↵elky
blocks.
2016-11-15Fixed #27393 -- Aligned input boxes in admin password reset forms.Michiel Beijen
2016-11-14Fixed #27463 -- Fixed E741 flake8 warnings.Ramin Farajpour Cami
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-11-12Fixed #27386 -- Wrapped admin's readonly fields in <div> rather than <p>.Jacob Rief
2016-10-24Fixed #26357 -- Allowed admin popups to work on links added after page load.Julian Andrews
2016-10-13Fixed #26954 -- Prevented ModelAdmin.has_module_permission()=False from ↵Halil Kaya
blocking access to the app index page.
2016-10-11Replaced '__' with LOOKUP_SEP constant.Nick Pope
2016-10-10Removed unused contrib.admin.utils.remove_trailing_data_field().Tim Graham
Unused since 8f30556329b64005d63b66859a74752a0b261315.
2016-10-07Fixed #24941 -- Added ModelAdmin.get_exclude().Zach Borboa
Thanks Ola Sitarska for the initial patch.
2016-10-05Fixed #27273 -- Added a construct_change_message() admin utility function.Tim Graham
2016-10-04Fixed #27218 -- Returned LogEntry instances from ModelAdmin.log_*() methods.François Freitag
2016-10-01Fixed #27302 -- Fixed ModelAdmin.construct_change_message() changed field ↵Claude Paroz
detection Thanks Ramiro Morales for the report and Tim Graham for the review.
2016-09-30Updated translations from TransifexClaude Paroz
Forward port of bfc9c727256ded75dd9438167d6549b195361a0d from stable/1.10.x.
2016-09-27Fixed #27266 -- Allowed using assertFormError()/assertFormsetError() in ↵Tim Graham
admin forms and formsets. Thanks Diego Andrés Sanabria Martín for the report and review.
2016-09-23Fixed #27261 -- Added missing python-brace-format markerClaude Paroz
Thanks Maxime Vdb for the report.
2016-09-22Fixed #27158 -- Fixed positioning of admin's many-to-many widgets in rtl.css.Mehdi Pourfar
2016-09-14Fixed #26170 -- Made ModelAdmin views run transactions on the correct database.Jibodeah
Thanks juntatalor for the initial patch.
2016-09-13Fixed #27216 -- Corrected import location in admin deprecation messages.Jeff Willette
2016-09-12Fixed #26524 -- Fixed crash in admin change view when displaying many to ↵Jon Dufresne
many forward refs. Thanks Tim Graham for the regression test.
2016-09-10Fixed #26097 -- Added password_validators_help_text_html to UserCreationForm.Alexander Gaevsky
2016-09-10Fixed #27207 -- Replaced <p> tag with <div> in admin help texts.Alexander Gaevsky
2016-09-09Fixed #27199 -- Made AdminIntegerFieldWidget use NumberInput.Rinat Khabibiev
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
The smart_* version should only be used when a lazy string should keep its lazy status.
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-25Fixed #27067 -- Deprecated string_concat() in favor of format_lazy().Mattias Loverot
2016-08-24Fixed #26816 -- Corrected an admin check to require inlines to subclass ↵Berker Peksag
InlineModelAdmin.
2016-08-24Replaced property() usage with decorator in a couple places.Berker Peksag
2016-08-23Fixed #26998 -- Reverted some admin checks from checking field.many_to_many ↵Collin Anderson
back to isinstance(field, models.ManyToManyField). This partially reverts 983c158da7723eb00a376bd31db76709da4d0260
2016-08-11Fixed #26919 -- Added the action form's media in the changelist view.Stanislav Karpov
2016-08-01Pulled contrib translations from TransifexClaude Paroz
Forward port f19cadd39170637a96cc0abea9e7f3b2ee9ce924 from stable/1.10.x
2016-07-21Removed duplicate admin CSS selector.Chad Whitman
2016-07-18Fixed XSS in admin's add/change related popup.Tim Graham
This is a security fix.
2016-07-16Fixed #17209 -- Added password reset/change class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-07-09Fixed #26872 -- Fixed text overflow in ModelAdmin.list_filter.Kenneth
2016-06-29Added Upper/Lower Sorbian translationsClaude Paroz
2016-06-29Added Georgian mapping to contrib/admin/static/admin/js/urlify.jsLh4cKg
2016-06-28Fixed #26811 -- Added addButton option to admin inlines JavaScript.David Sanders
2016-06-27Fixed #26779 -- Added extra_context parameter to admin's i18n_javascript view.Shabda Raaj
2016-06-24Refs #17209 -- Added LoginView and LogoutView class-based viewsClaude Paroz
Thanks Tim Graham for the review.
2016-06-21Fixed #26729 -- Allowed overriding a form field's label/help_text in ↵Paulo
Form.__init__() for TabularInline.
2016-06-10Fixed #26742 -- Fixed action select color in admin changelist.Dmitry Medvinsky
2016-06-09Fixed #4548 -- Added username hint to admin's change_password form.Oliver Sauder
2016-06-08Fixing #26524 -- Made a foreign key id reference in ModelAdmin.list_display ↵krishbharadwaj
display the id.
2016-06-06Refs #16501, #26474 -- Added xregexp.js source file.Pyie Zone
2016-06-04Fixed #19963 -- Added support for date_hierarchy across relations.Vytis Banaitis