Ticket #11460: 11460.diff

File 11460.diff, 1.8 KB (added by Tim Graham, 12 years ago)

Adding doc patch

  • docs/faq/admin.txt

    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  
    6868site in your database, it won't display a "Site" filter. In that case,
    6969filtering by site would be meaningless.
    7070
     71Some objects aren't appearing in the admin.
     72-------------------------------------------
     73
     74Inconsistent row counts may be caused by missing foreign key values or a
     75foreign 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
     78that foreign key is included is
     79:attr:`~django.contrib.admin.ModelAdmin.list_display`, the record will not be
     80shown in the admin changelist.
     81
    7182How can I customize the functionality of the admin interface?
    7283-------------------------------------------------------------
    7384
    There *may* be minor stylistic differences between supported browsers—for  
    104115example, some browsers may not support rounded corners. These are considered
    105116acceptable variations in rendering.
    106117
    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/
  • docs/ref/contrib/admin/index.txt

    diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
    index 66a5a2c..fabe40c 100644
    a b Other topics  
    6060    For information about serving the static files (images, JavaScript, and
    6161    CSS) associated with the admin in production, see :ref:`serving-files`.
    6262
     63    Having problems?  Try :doc:`/faq/admin`.
     64
    6365``ModelAdmin`` objects
    6466======================
    6567
Back to Top