summaryrefslogtreecommitdiff
path: root/docs/admin.txt
AgeCommit message (Collapse)Author
2008-08-23Massive reorganization of the docs. See the new docs online at ↵Jacob Kaplan-Moss
http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-17Fixed #8373 -- Corrected a bad link in the admin.txt documentation. Thanks ↵Brian Rosner
jarrow for catching my mistake. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8422 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-15Fixed #8299 -- Clarified the ModelAdmin.form option. Also added an inner ↵Brian Rosner
Meta class to the ModelForm example in adding custom validation to the admin. Thanks jarrow for the report and initial patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8395 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-14Fixed #7503 -- Allow callables in list_display. This also does a lookup on ↵Brian Rosner
the ModelAdmin for the method if the value is a string before looking on the model. Refs #8054. Thanks qmanic and Daniel Pope for tickets and patches. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8352 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-12Corrected a documentation error. Thanks sk1p for catching this.Brian Rosner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8324 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-11Added back save_model that was removed from [8273] to allow for both pre- ↵Brian Rosner
and post- operations around save in ModelAdmin. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8307 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-10Fixed #4667 -- Added support for inline generic relations in the admin. ↵Brian Rosner
Thanks to Honza Král and Alex Gaynor for their work on this ticket. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8279 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-09Fixed #5780 -- Adjusted the ModelAdmin API to allow the created/updated objectsBrian Rosner
to be passed to the formsets prior to validation. This is a backward incompatible change for anyone overridding save_add or save_change. They have been removed in favor of more granular methods introduced in [8266] and the new response_add and response_change nethods. save_model has been renamed to save_form due to its slightly changed behavior. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8273 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-08Fixed #8069 -- Corrected the inconsistent case with BaseInlineFormset. It ↵Brian Rosner
has been renamed to BaseInlineFormSet. Backward incompatible for anyone who used BaseInlineFormset directly. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8243 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-08Fixed #8166 -- Corrected a typo in the admin documentation. Thanks d00gs for ↵Brian Rosner
the hawk eyes. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-04Fixed #7942 -- Added a note to the admin ordering option documentation about ↵Brian Rosner
the admin only respecting the first element. Thanks mwdiers for the report and MattBowen for the original patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8210 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-04Clarified the intermediary models admin documentation and a minor clean-up.Brian Rosner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8209 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-04Added the missing form option to the ModelAdmin options section. Also added ↵Brian Rosner
a section for custom validation in the admin. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8208 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-01Reverted [8182]. Accidently committed from the wrong branch.Brian Rosner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8184 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-01Initial admin template docs. Needs more work.Brian Rosner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8182 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-01Clarified the raw_id_fields documentation and added it to InlineModelAdmin ↵Brian Rosner
options section. Added examples as well. Fixes #7905. Thanks Matthew Flanagan for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8176 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-01Fixed #7983 -- Added fields to the ModelAdmin section in the admin ↵Brian Rosner
documentation. Thanks julien for the report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8175 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-29Fixed #6095 -- Added the ability to specify the model to use to manage a ↵Russell Keith-Magee
ManyToManyField. Thanks to Eric Florenzano for his excellent work on this patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8136 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-27Removed trailing whitespace in admin docs.Gary Wilson Jr
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8111 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-27Normalized the use of "JavaScript" in the documentation.Gary Wilson Jr
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8110 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-27Fixed #7986 -- Added to the documentation the purpose of the ↵Gary Wilson Jr
`prepopulated_fields` `ModelAdmin` option now that its no longer just a parameter for `SlugField` fields, thanks frasern. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8109 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-25Standardised documentation of the Field help_text option and ↵Luke Plant
ModelAdmin.fields 'description' option. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8074 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-23Removed a colon that was rendering the bullet-point list below it as code in ↵Brian Rosner
docs/admin.txt. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-23Fixed #7897 -- Corrected some spelling and grammatical errors in the ↵Brian Rosner
InlineModelAdmin objects documentation. Thanks arthurk and Karen Tracey for catching these. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8065 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-21Refs #7864 -- Corrected more instances of "newforms" in the docs.Gary Wilson Jr
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8022 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-20Fixed #7850 -- Added adding django.contrib.admin to INSTALLED_APPS to the ↵Brian Rosner
steps to activating the Django admin site. Thanks dacort for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8010 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-07-19Fixed #7839 -- Corrected admin documentation and tutorial to reflect that ↵Brian Rosner
'classes' should be a list and not a string. Thanks Jan Rademaker for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7983 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