summaryrefslogtreecommitdiff
path: root/django/contrib/comments/admin.py
AgeCommit message (Collapse)Author
2014-03-21Removed contrib.comments per deprecation timeline.Tim Graham
2013-06-19Removed several unused imports.Aymeric Augustin
2013-02-06Fixed #19704 -- Make use of new ungettext_lazy function at appropriate placesAlexey Boriskin
2012-10-13Fixed #19077, #19079 -- Made USERNAME_FIELD a required field, and modified ↵Russell Keith-Magee
UserAdmin to match.
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
2010-12-21Fixed #13743 -- Fixed CommentsAdmin to not blow up if the delete_selected ↵Jannis Leidel
action is disabled. Thanks, Daniel Lindsley. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14996 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-03-12Fixed #12940 -- Modified some admin actions in contrib.comments to use ↵Russell Keith-Magee
ungettext in order to support Russian (and similar) pluralization rules. Thanks to void for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12770 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-23Fixed #11625: added comment moderation via admin actions.Jacob Kaplan-Moss
This is BACKWARDS INCOMPATIBLE if you were using the completely undocumented moderation view from 1.1. That view's been removed in favor of the admin actions. Thanks, Thejaswi Puthraya. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11639 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-10-08Fixed #11995 -- Modified the admin site definition for comments so that ↵Russell Keith-Magee
users are shown as a raw id list. Thanks to James Bennett for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11601 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-02-23Fixed #8630: finished the custom comment app API that was left out of 1.0. ↵Jacob Kaplan-Moss
This means it's now possible to override any of the models, forms, or views used by the comment app; see the new custom comment app docs for details and an example. Thanks to Thejaswi Puthraya for the original patch, and to carljm for docs and tests. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9890 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-01-12A few small fixes to django.contrib.comments (Comment.get_as_text for ↵Jacob Kaplan-Moss
non-authenticated users; references to Comment.permalink; unused imports). Fixes #9143, #9429, and 9439. Thanks, Thejaswi Puthraya. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9730 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-09-16Fixed #8917 -- Comments are now displayed in reverse order by submit_date in ↵Wilson Miner
the admin. Thanks to arien for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9038 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-25Refactored Django's comment system.Jacob Kaplan-Moss
Much of this work was done by Thejaswi Puthraya as part of Google's Summer of Code project; much thanks to him for the work, and to them for the program. This is a backwards-incompatible change; see the upgrading guide in docs/ref/contrib/comments/upgrade.txt for instructions if you were using the old comments system. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8557 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
This is a backward incompatible change. The admin contrib app has been refactored. The newforms module has several improvements including FormSets and Media definitions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7967 bcc190cf-cafb-0310-a4f2-bffc1f526a37