diff --git a/docs/faq/admin.txt b/docs/faq/admin.txt
index 8ec7491..f6c2f12 100644
a
|
b
|
For example, if your ``list_filter`` includes ``sites``, and there's only one
|
68 | 68 | site in your database, it won't display a "Site" filter. In that case, |
69 | 69 | filtering by site would be meaningless. |
70 | 70 | |
| 71 | Some objects aren't appearing in the admin. |
| 72 | ------------------------------------------- |
| 73 | |
| 74 | Inconsistent row counts may be caused by missing foreign key values or a |
| 75 | foreign key field incorrectly set to :attr:`null=False |
| 76 | <django.db.models.Field.null>`. If you have a record with a |
| 77 | :class:`~django.db.models.ForeignKey` pointing to a non-existent object and |
| 78 | that foreign key is included is |
| 79 | :attr:`~django.contrib.admin.ModelAdmin.list_display`, the record will not be |
| 80 | shown in the admin changelist. |
| 81 | |
71 | 82 | How can I customize the functionality of the admin interface? |
72 | 83 | ------------------------------------------------------------- |
73 | 84 | |
… |
… |
There *may* be minor stylistic differences between supported browsers—for
|
104 | 115 | example, some browsers may not support rounded corners. These are considered |
105 | 116 | acceptable variations in rendering. |
106 | 117 | |
107 | | .. _YUI's A-grade: http://yuilibrary.com/yui/docs/tutorials/gbs/ |
108 | | |
| 118 | .. _YUI's A-grade: http://yuilibrary.com/yui/docs/tutorials/gbs/ |
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 66a5a2c..fabe40c 100644
a
|
b
|
Other topics
|
60 | 60 | For information about serving the static files (images, JavaScript, and |
61 | 61 | CSS) associated with the admin in production, see :ref:`serving-files`. |
62 | 62 | |
| 63 | Having problems? Try :doc:`/faq/admin`. |
| 64 | |
63 | 65 | ``ModelAdmin`` objects |
64 | 66 | ====================== |
65 | 67 | |