| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-18 | Fixed #20767 -- Fixed ModelAdmin.preserve_filters for namespaced URLs. | Loic Bistuer | |
| Thanks Collin Anderson for the report. | |||
| 2013-07-17 | Couple of cleanups in RelatedObjectLookups.js | Tim Graham | |
| Thanks George Karpenkov. | |||
| 2013-07-09 | Fixed #20663 -- "Today" and "now" admin shortcuts. | Loic Bistuer | |
| Changed the shortcuts next to date and time intput widgets to account for the current timezone. Refs #7717, #14253 and #18768. | |||
| 2013-07-01 | Updated tests for deprecation of Option.get_(add|change|delete)_permission. | Tim Graham | |
| refs #20642. | |||
| 2013-07-01 | Stopped using django.utils.unittest in the test suite. | Aymeric Augustin | |
| Refs #20680. | |||
| 2013-06-29 | Advanced deprecation warnings for Django 1.7. | Aymeric Augustin | |
| 2013-06-27 | Fixed #20664 -- Fixed a bug with raw_id_fields on Python 3. | Tim Graham | |
| Thanks jefftriplett for the report. | |||
| 2013-06-26 | Fixed #14881 -- Modified password reset to work with a non-integer UserModel.pk. | Tim Graham | |
| uid is now base64 encoded in password reset URLs/views. A backwards compatible password_reset_confirm view/URL will allow password reset links generated before this change to continue to work. This view will be removed in Django 1.7. Thanks jonash for the initial patch and claudep for the review. | |||
| 2013-06-25 | Fixed #20642 -- Deprecated `Option.get_(add|change|delete)_permission`. | Simon Charette | |
| Those methods were only used by `contrib.admin` internally and exclusively related to `contrib.auth`. Since they were undocumented but used in the wild the raised deprecation warning point to an also undocumented alternative that lives in `contrib.auth`. Also did some PEP8 and other cleanups in the affected modules. | |||
| 2013-06-25 | Fixed #19773 - Added admin/popup_response.html template. | Javier Mansilla | |
| Thanks jimmylam@ for the suggestion. | |||
| 2013-06-19 | Itty bitty typo fix. | Christian Metts | |
| "deletes" was missing it's last e. | |||
| 2013-06-19 | Fixed #20288 -- Fixed inconsistency in the naming of the popup GET parameter. | Loic Bistuer | |
| Thanks to Keryn Knight for the initial report and reviews, and to tomask for the original patch. | |||
| 2013-06-19 | Removed several unused imports. | Aymeric Augustin | |
| 2013-06-19 | Fixed #6903 - Preserve admin changelist filters after saving or deleting an ↵ | Loic Bistuer | |
| object | |||
| 2013-06-18 | Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵ | Loic Bistuer | |
| fields | |||
| 2013-06-16 | Fixed #20464 -- Added a `total_error_count` method on formsets. | Baptiste Mispelon | |
| Thanks to frog32 for the report and to Tim Graham for the review. | |||
| 2013-06-10 | Defined available_apps in relevant tests. | Aymeric Augustin | |
| Fixed #20483. | |||
| 2013-06-05 | Fixed #19080 -- Fine-grained control over select_related in admin | Tomek Paczkowski | |
| 2013-06-03 | Fixed #20532 -- Reverse auth views by name, not by path. | Gavin Wahl | |
| Auth views should be reversed by name, not their locations in `django.contrib.auth.views`. This allows substituting your own implementations of the auth views. | |||
| 2013-06-01 | Fixed #18388 - Added InlineModelAdmin.get_max_num hook. | Tim Graham | |
| Thanks d.willy.c.c@ for the suggestion and Melevir and Areski Belaid for work on the patch. | |||
| 2013-05-31 | Fixed #18681 -- BaseModelAdmin.get_form and InlineModelAdmin.get_formset no ↵ | Loic Bistuer | |
| longer bypass get_fieldsets Thanks msopacua for the report. | |||
| 2013-05-30 | Fixed #19425 - Added InlineModelAdmin.get_extra hook. | Tim Graham | |
| Thanks dave@ for the suggestion and Rohan Jain for the patch. | |||
| 2013-05-29 | Fixed #20331 -- Allowed admin actions to serve StreamingHttpResponses | Tim Graham | |
| Thanks Edwin. | |||
| 2013-05-29 | Fixed #15653 - Error in admin pagination tag. | Tim Graham | |
| Thanks jcumbo@ for the report and adamzap and nott for the patch. | |||
| 2013-05-27 | Fixed #20182 - admin lookup should treat 0 as False for __isnull | Tim Graham | |
| Thanks Benjie Chen. | |||
| 2013-05-27 | Fixed #12491 -- Tweak checkbox widget help text alignment on the admin. | Ramiro Morales | |
| Thanks master' for the report and Niels van Dijk for the fix | |||
| 2013-05-26 | Replaced `and...or...` constructs with PEP 308 conditional expressions. | Ramiro Morales | |
| 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-25 | Updated translation catalogs | Claude Paroz | |
| Updated core/admin/admindocs/comments translation catalogs. | |||
| 2013-05-25 | Fixed #20455 -- Do not use ngettext for undefined plurals | Marc Egli | |
| Using two separate translation strings instead of gettext plural when there is no reference to the number in the translated string. This prevents some translations like Russian and Latvian to use the singular form for 11 or 21. | |||
| 2013-05-21 | Fixed #17308 -- Enabled the use of short_description on properties in the admin. | Wiktor Kolodziej | |
| 2013-05-19 | Made 2d309a70 compatible with Python 3. | Aymeric Augustin | |
| 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. | |||
| 2013-05-19 | Fixed #12674 -- provide a way to override admin validation | Honza Kral | |
| Moved admin validation code to classes and have those be class attributes to the ModelAdmin classes. | |||
| 2013-05-17 | Replaced an antiquated pattern. | Aymeric Augustin | |
| Thanks Lennart Regebro for pointing it out. | |||
| 2013-05-09 | Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵ | Luke Plant | |
| added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute. | |||
| 2013-05-09 | Further removal of static admin validation that can fail erroneously | Luke Plant | |
| 2013-05-09 | Removed fragile admin validation of fields on ModelForm | Luke Plant | |
| Refs #19445 | |||
| 2013-05-02 | Updated translation templates and removed en translations | Claude Paroz | |
| "en" translations have been mistakenly committed in 87cc3da81. | |||
| 2013-04-14 | Fixed #18231 -- Made JavaScript i18n not pollute global JS namespace. | Matthew Tretter | |
| Also, use Django templating for the dynamic generated JS code and use more idiomatic coding techniques. Thanks Matthew Tretter for the report and the patch. | |||
| 2013-04-08 | Merge pull request #938 from darklow/ticket_20111 | Jannis Leidel | |
| Added more precise message level for succcess and warning messages | |||
| 2013-04-08 | Fix #20111 Added more precise message level for succcess and warning messages | Kaspars Sprogis | |
| 2013-04-06 | Explicitly removes dismissCalendar | Andrew Jesaitis | |
| Uses the removeEvent function in core.js to remove the dismissCalendar function from the document click event. Fixes #4045. | |||
| 2013-04-06 | Explicitly removes dismissClock | Andrew Jesaitis | |
| Uses the removeEvent function in core.js to remove the function from the document click event. Refs #4045. | |||
| 2013-03-28 | Fixed spelling errors | Gavin Wahl | |
| 2013-03-28 | Fixed spelling of "consistent" in admin/options.py | Rocky Meza | |
| 2013-03-28 | Updated translation templates | Claude Paroz | |
| 2013-03-28 | Added Burmese language | Claude Paroz | |
| Thanks to Yhal Htet Aung for the translation work. | |||
| 2013-03-28 | Added Ossetic language | Claude Paroz | |
| Thanks to Xwybylty Soslan for the translation work. | |||
| 2013-03-28 | Updated translations from Transifex | Claude Paroz | |
| Polish, Telugu, Georgian, Azerbaijani, Norwegian Bokmål, Basque, Dutch, Thai, Spanish (Argentina), Afrikaans. | |||
