mirror of https://github.com/django/django.git
[2.0.x] Fixed #28777 -- Clarified the docs for admin.register's args.
Backport of abaf0ab4a4
from master
This commit is contained in:
parent
36dd0126a5
commit
3c8c3ff637
|
@ -123,9 +123,9 @@ The ``register`` decorator
|
|||
class AuthorAdmin(admin.ModelAdmin):
|
||||
pass
|
||||
|
||||
It is given one or more model classes to register with the ``ModelAdmin``
|
||||
and an optional keyword argument ``site`` if you are not using the default
|
||||
``AdminSite``::
|
||||
It's given one or more model classes to register with the ``ModelAdmin``.
|
||||
If you're using a custom :class:`AdminSite`, pass it using the ``site`` keyword
|
||||
argument::
|
||||
|
||||
from django.contrib import admin
|
||||
from .models import Author, Reader, Editor
|
||||
|
|
Loading…
Reference in New Issue