summaryrefslogtreecommitdiff
path: root/django/contrib/admin
AgeCommit message (Collapse)Author
2013-07-18Fixed #20767 -- Fixed ModelAdmin.preserve_filters for namespaced URLs.Loic Bistuer
Thanks Collin Anderson for the report.
2013-07-17Couple of cleanups in RelatedObjectLookups.jsTim Graham
Thanks George Karpenkov.
2013-07-09Fixed #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-01Updated tests for deprecation of Option.get_(add|change|delete)_permission.Tim Graham
refs #20642.
2013-07-01Stopped using django.utils.unittest in the test suite.Aymeric Augustin
Refs #20680.
2013-06-29Advanced deprecation warnings for Django 1.7.Aymeric Augustin
2013-06-27Fixed #20664 -- Fixed a bug with raw_id_fields on Python 3.Tim Graham
Thanks jefftriplett for the report.
2013-06-26Fixed #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-25Fixed #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-25Fixed #19773 - Added admin/popup_response.html template.Javier Mansilla
Thanks jimmylam@ for the suggestion.
2013-06-19Itty bitty typo fix.Christian Metts
"deletes" was missing it's last e.
2013-06-19Fixed #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-19Removed several unused imports.Aymeric Augustin
2013-06-19Fixed #6903 - Preserve admin changelist filters after saving or deleting an ↵Loic Bistuer
object
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵Loic Bistuer
fields
2013-06-16Fixed #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-10Defined available_apps in relevant tests.Aymeric Augustin
Fixed #20483.
2013-06-05Fixed #19080 -- Fine-grained control over select_related in adminTomek Paczkowski
2013-06-03Fixed #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-01Fixed #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-31Fixed #18681 -- BaseModelAdmin.get_form and InlineModelAdmin.get_formset no ↵Loic Bistuer
longer bypass get_fieldsets Thanks msopacua for the report.
2013-05-30Fixed #19425 - Added InlineModelAdmin.get_extra hook.Tim Graham
Thanks dave@ for the suggestion and Rohan Jain for the patch.
2013-05-29Fixed #20331 -- Allowed admin actions to serve StreamingHttpResponsesTim Graham
Thanks Edwin.
2013-05-29Fixed #15653 - Error in admin pagination tag.Tim Graham
Thanks jcumbo@ for the report and adamzap and nott for the patch.
2013-05-27Fixed #20182 - admin lookup should treat 0 as False for __isnullTim Graham
Thanks Benjie Chen.
2013-05-27Fixed #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-26Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales
2013-05-25Fixed #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-25Updated translation catalogsClaude Paroz
Updated core/admin/admindocs/comments translation catalogs.
2013-05-25Fixed #20455 -- Do not use ngettext for undefined pluralsMarc 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-21Fixed #17308 -- Enabled the use of short_description on properties in the admin.Wiktor Kolodziej
2013-05-19Made 2d309a70 compatible with Python 3.Aymeric Augustin
2013-05-19Fixed #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-19Fixed #12674 -- provide a way to override admin validationHonza Kral
Moved admin validation code to classes and have those be class attributes to the ModelAdmin classes.
2013-05-17Replaced an antiquated pattern.Aymeric Augustin
Thanks Lennart Regebro for pointing it out.
2013-05-09Fixed #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-09Further removal of static admin validation that can fail erroneouslyLuke Plant
2013-05-09Removed fragile admin validation of fields on ModelFormLuke Plant
Refs #19445
2013-05-02Updated translation templates and removed en translationsClaude Paroz
"en" translations have been mistakenly committed in 87cc3da81.
2013-04-14Fixed #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-08Merge pull request #938 from darklow/ticket_20111Jannis Leidel
Added more precise message level for succcess and warning messages
2013-04-08Fix #20111 Added more precise message level for succcess and warning messagesKaspars Sprogis
2013-04-06Explicitly removes dismissCalendarAndrew Jesaitis
Uses the removeEvent function in core.js to remove the dismissCalendar function from the document click event. Fixes #4045.
2013-04-06Explicitly removes dismissClockAndrew Jesaitis
Uses the removeEvent function in core.js to remove the function from the document click event. Refs #4045.
2013-03-28Fixed spelling errorsGavin Wahl
2013-03-28Fixed spelling of "consistent" in admin/options.pyRocky Meza
2013-03-28Updated translation templatesClaude Paroz
2013-03-28Added Burmese languageClaude Paroz
Thanks to Yhal Htet Aung for the translation work.
2013-03-28Added Ossetic languageClaude Paroz
Thanks to Xwybylty Soslan for the translation work.
2013-03-28Updated translations from TransifexClaude Paroz
Polish, Telugu, Georgian, Azerbaijani, Norwegian Bokmål, Basque, Dutch, Thai, Spanish (Argentina), Afrikaans.