diff options
| author | Clifford Gama <cliffygamy@gmail.com> | 2025-10-29 17:32:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-29 11:32:12 -0400 |
| commit | 01f8460653e73a8f60c98d3a37a74b28818744b6 (patch) | |
| tree | dbefe388d320ce6d33eee93a3c441142384b40f5 /docs/intro | |
| parent | 1aa69a7491ce7f7f1f164a26a3dfaaa1aeeab217 (diff) | |
Fixed #36329 -- Removed non-code custom link text when cross-referencing Python objects.
Thanks Bruno Alla, Sarah Boyce, and Jacob Walls for reviews.
Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
Diffstat (limited to 'docs/intro')
| -rw-r--r-- | docs/intro/tutorial07.txt | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/docs/intro/tutorial07.txt b/docs/intro/tutorial07.txt index b7638e365c..ab77f2b540 100644 --- a/docs/intro/tutorial07.txt +++ b/docs/intro/tutorial07.txt @@ -284,13 +284,16 @@ the scenes, limiting the number of search fields to a reasonable number will make it easier for your database to do the search. Now's also a good time to note that change lists give you free pagination. The -default is to display 100 items per page. :attr:`Change list pagination -<django.contrib.admin.ModelAdmin.list_per_page>`, :attr:`search boxes -<django.contrib.admin.ModelAdmin.search_fields>`, :attr:`filters -<django.contrib.admin.ModelAdmin.list_filter>`, :attr:`date-hierarchies -<django.contrib.admin.ModelAdmin.date_hierarchy>`, and -:attr:`column-header-ordering <django.contrib.admin.ModelAdmin.list_display>` -all work together like you think they should. +default is to display 100 items per page. + +.. seealso:: + + The following :class:`~django.contrib.admin.ModelAdmin` options allow + further customization of change lists: + :attr:`~django.contrib.admin.ModelAdmin.list_per_page`, + :attr:`~django.contrib.admin.ModelAdmin.search_fields`, + :attr:`~django.contrib.admin.ModelAdmin.date_hierarchy`, and + :attr:`~django.contrib.admin.ModelAdmin.list_display`. Customize the admin look and feel ================================= |
