Changeset 653
- Timestamp:
- 09/19/05 22:24:01 (3 years ago)
- Files:
-
- django/trunk/docs/faq.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/faq.txt
r652 r653 365 365 allows access to users with those two fields both set to True. 366 366 367 My "list_filter" contains a ManyToManyField, but the filter doesn't display. 368 ---------------------------------------------------------------------------- 369 370 Django won't bother displaying the filter for a ManyToManyField if there are 371 fewer than two related objects. 372 373 For example, if your ``list_filter`` includes ``sites``, and there's only one 374 site in your database, it won't display a "Site" filter. In that case, 375 filtering by site would be meaningless. 376 367 377 How can I customize the functionality of the admin interface? 368 378 -------------------------------------------------------------
