summaryrefslogtreecommitdiff
path: root/django/contrib/admin
AgeCommit message (Collapse)Author
2006-07-01Added USE_I18N setting, which lets you turn off internationalization ↵Adrian Holovaty
overhead with a single setting. Defaults to True. Currently only affects the admin i18n JavaScript, but I'll be adding other optimizations. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3247 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-30Fixed #2275 -- Added footer hook to admin base.html templateAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3244 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-28Merged multi-auth branch to trunk. See the authentication docs for the ↵Jacob Kaplan-Moss
ramifications of this change. Many, many thanks to Joseph Kocherhans for the hard work! git-svn-id: http://code.djangoproject.com/svn/django/trunk@3226 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-26Fixed #2157 -- Admin doc views now work if django.contrib.sites isn't installedAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3213 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-22Fixed #2199: deleting objects with generic foreign keys in the admin now ↵Jacob Kaplan-Moss
works. Thanks, Jay Parlar git-svn-id: http://code.djangoproject.com/svn/django/trunk@3194 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-19Refs #1834 -- Documented include_admin_script tag in admin interface. Thanks toMalcolm Tredinnick
Matias Hermanrud Fjeld. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3147 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-18Fixed #2186 -- Fixed i18n variable substitution in ↵Adrian Holovaty
admin/templates/registration/password_reset_email.html. Thanks, md@hudora.de git-svn-id: http://code.djangoproject.com/svn/django/trunk@3140 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-16Added AllValuesFilterSpec to admin changelist filters, which lets you put ↵Adrian Holovaty
any arbitrary field in Admin.list_filter. To determine the list of all available choices, Django does a SELECT DISTINCT. Note this is backwards-incompatible for people who have defined and registered their own FilterSpecs, because each FilterSpec now takes a 'model' parameter. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3136 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-14Fixed #2152 -- Now HTML-escaping user.first_name in admin/base.html templateAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3129 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-13Fixed #2148 -- Now escaping ForeignKey fields correctly in Django admin ↵Adrian Holovaty
change-list pages. Thanks, rushman@mail.ru git-svn-id: http://code.djangoproject.com/svn/django/trunk@3124 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-12fixed #2128: updated BiDi supportGeorg Bauer
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3121 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-08Fixed #2106 -- Made collapse-block JavaScript translatable. Thanks, ramiroAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3114 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-07Fixed #2100 -- Made some remaining parts of the admin changelist ↵Adrian Holovaty
translatable. Thanks, ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@3097 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-06fixed #2089: added language bidirectional support and updated the admin to ↵Georg Bauer
use it. thanks meir@mksoft! git-svn-id: http://code.djangoproject.com/svn/django/trunk@3091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-05Added more visible borders to form buttons.Wilson Miner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3084 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-05Fixed #2084 -- Removed admin-site 'documentation / change password / log ↵Adrian Holovaty
out' links on login page for users who are logged in but don't have staff status. Thanks, rudolphfroger git-svn-id: http://code.djangoproject.com/svn/django/trunk@3079 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-03Eliminated lots of mutable default arguments (since they are bugsLuke Plant
waiting to happen and are memory leaks too). git-svn-id: http://code.djangoproject.com/svn/django/trunk@3070 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #1635 -- Admin-site related-object popup no longer fails for ↵Adrian Holovaty
edit_inline objects in IE/Win. Thanks, Christopher Lenz git-svn-id: http://code.djangoproject.com/svn/django/trunk@3066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #1999 -- Sidebar widths are now specified in ems and will scale up ↵Wilson Miner
with increasing font size. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3065 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2072 -- Moved IE hacks out of changelists.css into patch-iewin.css to ↵Wilson Miner
avoid confusion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3064 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2063 -- Made admin date_hierarchy i18n-friendly by using the new ↵Adrian Holovaty
YEAR_MONTH_FORMAT and MONTH_DAY_FORMAT technical message IDs. Thanks, ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@3056 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #2055 -- Lengthened form labels on login screen to accommodate longer ↵Wilson Miner
translated strings. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-02Fixed #744 -- Added icon to display null boolean values in admin changelists.Wilson Miner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3050 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Negligible spacing change to admin/templates/admin/field_line.htmlAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3037 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Negligible spacing change to admin/views/main.pyAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3036 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-06-01Fixed #2056 -- Escaped history messages in admin. Thanks, SmileyChrisAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3034 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed bug in admin where it would redirect infinitely if invalid lookup ↵Adrian Holovaty
parameters were given in the URL. Refs #2024 git-svn-id: http://code.djangoproject.com/svn/django/trunk@3024 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2006 -- Admin now quotes strings in breadcrumbs and filters. Thanks, ↵Adrian Holovaty
mhf@hex.no git-svn-id: http://code.djangoproject.com/svn/django/trunk@3023 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2050 -- Fixed raw_id_admin display in admin. Thanks, Christopher LenzAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3018 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-31Fixed #2023 -- 'View on site' now works with non-integer primary keys.Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-29Fixed #2029 - models now sorted by verbose_name_plural in get_admin_app_list ↵Luke Plant
- thanks Alex Dedul. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2999 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-26Fixed #1403 -- 'Add' green plus sign no longer appears in admin change forms ↵Adrian Holovaty
for fields whose related models don't have an admin git-svn-id: http://code.djangoproject.com/svn/django/trunk@2991 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Fixed #1959 -- Fixed typo in django/contrib/admin/views/doc.pyAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2957 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-22Fixed #1835 -- FilePathField no longer breaks admin model documentation. ↵Adrian Holovaty
Thanks, Adam Endicott git-svn-id: http://code.djangoproject.com/svn/django/trunk@2952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-18Made a few small tweaks to admin doc pages.Jacob Kaplan-Moss
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2938 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-16Fixed #1834 -- Added docstrings to admin template tags. Thanks, ubernostrumAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2920 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-15Fixed #1849 -- Slugifying now collapses consecutive hyphens to a single ↵Adrian Holovaty
hyphen. Thanks, Tom Insam git-svn-id: http://code.djangoproject.com/svn/django/trunk@2905 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-09Added padding fix to container to address reported display issues in Safari.Wilson Miner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2878 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-06Changed the admin index to sort models alphabetically.Luke Plant
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2861 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-06Fixed #1579 - added support for 'Q' objects in limit_choices_to.Luke Plant
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2850 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-05Fixed #1699 -- Fixed JavaScript error in admin site with raw_id_admin and ↵Adrian Holovaty
database backend that returns integers as long ints git-svn-id: http://code.djangoproject.com/svn/django/trunk@2844 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-05Fixed #1728 -- Fixed broken nav links in password_change_done admin page. ↵Adrian Holovaty
Thanks for reporting, mdt@emdete.de git-svn-id: http://code.djangoproject.com/svn/django/trunk@2840 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-04Fixed #1583: django.contrib.admin.templatetags.admin_list no longer imports ↵Jacob Kaplan-Moss
from the non-existant django.parts.media.photos. Thanks, ubernostrum git-svn-id: http://code.djangoproject.com/svn/django/trunk@2831 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-04Fixed bug in admin: raw_id_admin fields weren't displaying their old values ↵Adrian Holovaty
next to the form field, due to descriptor-fields change git-svn-id: http://code.djangoproject.com/svn/django/trunk@2827 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-05-02MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly ↵Adrian Holovaty
backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions. git-svn-id: http://code.djangoproject.com/svn/django/trunk@2809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-04-12Fixed #1626 -- Fixed a bunch of typos in comments and docs. Thanks, DexterAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2687 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-04-10Renamed OneToOne to OneToOneRel to be consistent with ManyToManyRelAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2650 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-04-10Renamed ManyToOne to ManyToOneRel to be consistent with ManyToManyRelAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2649 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-04-10Fixed #1600 -- Renamed ManyToMany to ManyToManyRel so people get a clearer ↵Adrian Holovaty
error if they use ManyToMany instead of ManyToManyField git-svn-id: http://code.djangoproject.com/svn/django/trunk@2648 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-03-02Fixed #1431 -- Removed unneeded line in ↵Adrian Holovaty
contrib.admin.templatetags.admin_list. Thanks, salmon@eight.nl git-svn-id: http://code.djangoproject.com/svn/django/trunk@2468 bcc190cf-cafb-0310-a4f2-bffc1f526a37