Ticket #19315: faq_admin_and_contrib_admin_doc.diff

File faq_admin_and_contrib_admin_doc.diff, 2.9 KB (added by ClaesBas, 12 years ago)
  • docs/faq/admin.txt

    diff --git a/docs/faq/admin.txt b/docs/faq/admin.txt
    index 872ad25..6ba392f 100644
    a b things:  
    1111* Set the :setting:`SESSION_COOKIE_DOMAIN` setting in your admin config
    1212  file to match your domain. For example, if you're going to
    1313  "http://www.example.com/admin/" in your browser, in
    14   "myproject.settings" you should set ``SESSION_COOKIE_DOMAIN = 'www.example.com'``.
     14  "myproject.settings" you should set :setting:`SESSION_COOKIE_DOMAIN` = 'www.example.com'.
    1515
    1616* Some browsers (Firefox?) don't like to accept cookies from domains that
    1717  don't have dots in them. If you're running the admin site on "localhost"
    I can't log in. When I enter a valid username and password, it brings up the log  
    2323-----------------------------------------------------------------------------------------------------------------------------------------------------------
    2424
    2525If you're sure your username and password are correct, make sure your user
    26 account has ``is_active`` and ``is_staff`` set to True. The admin site only
     26account has :attr:`~django.contrib.auth.models.User.is_active` and :attr:`~django.contrib.auth.models.User.is_staff` set to True. The admin site only
    2727allows access to users with those two fields both set to True.
    2828
    2929How can I prevent the cache middleware from caching the admin site?
    My "list_filter" contains a ManyToManyField, but the filter doesn't display.  
    6464Django won't bother displaying the filter for a ``ManyToManyField`` if there
    6565are fewer than two related objects.
    6666
    67 For example, if your ``list_filter`` includes ``sites``, and there's only one
     67For example, if your
     68:attr:`~django.contrib.admin.ModelAdmin.list_filter` includes
     69:doc:`sites </ref/contrib/sites>`, and there's only one
    6870site in your database, it won't display a "Site" filter. In that case,
    6971filtering by site would be meaningless.
    7072
    How can I customize the functionality of the admin interface?  
    8587
    8688You've got several options. If you want to piggyback on top of an add/change
    8789form that Django automatically generates, you can attach arbitrary JavaScript
    88 modules to the page via the model's ``class Admin`` ``js`` parameter. That
     90modules to the page via the model's
     91:ref:`class Admin js<modeladmin-media-definitions>` parameter. That
    8992parameter is a list of URLs, as strings, pointing to JavaScript modules that
    9093will be included within the admin form via a ``<script>`` tag.
    9194
  • docs/ref/contrib/admin/index.txt

    diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
    index 29ee66b..9336ce1 100644
    a b instances which allow you to easily customize the response data before  
    13771377rendering. For more details, see the
    13781378:doc:`TemplateResponse documentation </ref/template-response>`.
    13791379
     1380.. _modeladmin-media-definitions:
     1381
    13801382``ModelAdmin`` media definitions
    13811383--------------------------------
    13821384
Back to Top