=====================The Django admin site=====================.. module:: django.contrib.admin:synopsis: Django's admin site.One of the most powerful parts of Django is the automatic admin interface. Itreads metadata from your models to provide a quick, model-centric interfacewhere trusted users can manage content on your site. The admin's recommendeduse is limited to an organization's internal management tool. It's not intendedfor building your entire front end around.The admin has many hooks for customization, but beware of trying to use thosehooks exclusively. If you need to provide a more process-centric interfacethat abstracts away the implementation details of database tables and fields,then it's probably time to write your own views.In this document we discuss how to activate, use, and customize Django's admininterface.Overview========The admin is enabled in the default project template used by:djadmin:`startproject`.If you're not using the default project template, here are the requirements:#. Add ``'django.contrib.admin'`` and its dependencies -:mod:`django.contrib.auth`, :mod:`django.contrib.contenttypes`,:mod:`django.contrib.messages`, and :mod:`django.contrib.sessions` - to your:setting:`INSTALLED_APPS` setting.#. Configure a :class:`~django.template.backends.django.DjangoTemplates`backend in your :setting:`TEMPLATES` setting with``django.template.context_processors.request``,``django.contrib.auth.context_processors.auth``, and``django.contrib.messages.context_processors.messages`` inthe ``'context_processors'`` option of :setting:`OPTIONS<TEMPLATES-OPTIONS>`.#. If you've customized the :setting:`MIDDLEWARE` setting,:class:`django.contrib.auth.middleware.AuthenticationMiddleware` and:class:`django.contrib.messages.middleware.MessageMiddleware` must beincluded.#. :ref:`Hook the admin's URLs into your URLconf<hooking-adminsite-to-urlconf>`.After you've taken these steps, you'll be able to use the admin site byvisiting the URL you hooked it into (``/admin/``, by default).If you need to create a user to login with, use the :djadmin:`createsuperuser`command. By default, logging in to the admin requires that the user has the:attr:`~.User.is_staff` attribute set to ``True``.Finally, determine which of your application's models should be editable in theadmin interface. For each of those models, register them with the admin asdescribed in :class:`ModelAdmin`.Other topics------------.. toctree:::maxdepth: 1actionsfiltersadmindocsjavascript.. seealso::For information about serving the static files (images, JavaScript, andCSS) associated with the admin in production, see :ref:`serving-files`.Having problems? Try :doc:`/faq/admin`.``ModelAdmin`` objects======================.. class:: ModelAdminThe ``ModelAdmin`` class is the representation of a model in the admininterface. Usually, these are stored in a file named ``admin.py`` in yourapplication. Let's take a look at an example of the ``ModelAdmin``::from django.contrib import adminfrom myapp.models import Authorclass AuthorAdmin(admin.ModelAdmin):passadmin.site.register(Author, AuthorAdmin).. admonition:: Do you need a ``ModelAdmin`` object at all?In the preceding example, the ``ModelAdmin`` class doesn't define anycustom values (yet). As a result, the default admin interface will beprovided. If you are happy with the default admin interface, you don'tneed to define a ``ModelAdmin`` object at all -- you can register themodel class without providing a ``ModelAdmin`` description. Thepreceding example could be simplified to::from django.contrib import adminfrom myapp.models import Authoradmin.site.register(Author)The ``register`` decorator--------------------------.. function:: register(*models, site=django.contrib.admin.sites.site)There is also a decorator for registering your ``ModelAdmin`` classes::from django.contrib import adminfrom .models import Author@admin.register(Author)class AuthorAdmin(admin.ModelAdmin):passIt'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`` keywordargument::from django.contrib import adminfrom .models import Author, Editor, Readerfrom myproject.admin_site import custom_admin_site@admin.register(Author, Reader, Editor, site=custom_admin_site)class PersonAdmin(admin.ModelAdmin):passYou can't use this decorator if you have to reference your model adminclass in its ``__init__()`` method, e.g.``super(PersonAdmin, self).__init__(*args, **kwargs)``. You can use``super().__init__(*args, **kwargs)``.Discovery of admin files------------------------When you put ``'django.contrib.admin'`` in your :setting:`INSTALLED_APPS`setting, Django automatically looks for an ``admin`` module in eachapplication and imports it... class:: apps.AdminConfigThis is the default :class:`~django.apps.AppConfig` class for the admin.It calls :func:`~django.contrib.admin.autodiscover()` when Django starts... class:: apps.SimpleAdminConfigThis class works like :class:`~django.contrib.admin.apps.AdminConfig`,except it doesn't call :func:`~django.contrib.admin.autodiscover()`... attribute:: default_siteA dotted import path to the default admin site's class or to a callablethat returns a site instance. Defaults to``'django.contrib.admin.sites.AdminSite'``. See:ref:`overriding-default-admin-site` for usage... function:: autodiscoverThis function attempts to import an ``admin`` module in each installedapplication. Such modules are expected to register models with the admin.Typically you won't need to call this function directly as:class:`~django.contrib.admin.apps.AdminConfig` calls it when Django starts.If you are using a custom ``AdminSite``, it is common to import all of the``ModelAdmin`` subclasses into your code and register them to the custom``AdminSite``. In that case, in order to disable auto-discovery, you shouldput ``'django.contrib.admin.apps.SimpleAdminConfig'`` instead of``'django.contrib.admin'`` in your :setting:`INSTALLED_APPS` setting.``ModelAdmin`` options----------------------The ``ModelAdmin`` is very flexible. It has several options for dealing withcustomizing the interface. All options are defined on the ``ModelAdmin``subclass::from django.contrib import adminclass AuthorAdmin(admin.ModelAdmin):date_hierarchy = 'pub_date'.. attribute:: ModelAdmin.actionsA list of actions to make available on the change list page. See:doc:`/ref/contrib/admin/actions` for details... attribute:: ModelAdmin.actions_on_top.. attribute:: ModelAdmin.actions_on_bottomControls where on the page the actions bar appears. By default, the adminchangelist displays actions at the top of the page (``actions_on_top = True;actions_on_bottom = False``)... attribute:: ModelAdmin.actions_selection_counterControls whether a selection counter is displayed next to the action dropdown.By default, the admin changelist will display it(``actions_selection_counter = True``)... attribute:: ModelAdmin.date_hierarchySet ``date_hierarchy`` to the name of a ``DateField`` or ``DateTimeField``in your model, and the change list page will include a date-based drilldownnavigation by that field.Example::date_hierarchy = 'pub_date'You can also specify a field on a related model using the ``__`` lookup,for example::date_hierarchy = 'author__pub_date'This will intelligently populate itself based on available data,e.g. if all the dates are in one month, it'll show the day-leveldrill-down only... note::``date_hierarchy`` uses :meth:`QuerySet.datetimes()<django.db.models.query.QuerySet.datetimes>` internally. Please referto its documentation for some caveats when time zone support isenabled (:setting:`USE_TZ = True <USE_TZ>`)... attribute:: ModelAdmin.empty_value_displayThis attribute overrides the default display value for record's fields thatare empty (``None``, empty string, etc.). The default value is ``-`` (adash). For example::from django.contrib import adminclass AuthorAdmin(admin.ModelAdmin):empty_value_display = '-empty-'You can also override ``empty_value_display`` for all admin pages with:attr:`AdminSite.empty_value_display`, or for specific fields like this::from django.contrib import adminclass AuthorAdmin(admin.ModelAdmin):list_display = ('name', 'title', 'view_birth_date')@admin.display(empty_value='???')def view_birth_date(self, obj):return obj.birth_date.. attribute:: ModelAdmin.excludeThis attribute, if given, should be a list of field names to exclude fromthe form.For example, let's consider the following model::from django.db import modelsclass Author(models.Model):name = models.CharField(max_length=100)title = models.CharField(max_length=3)birth_date = models.DateField(blank=True, null=True)If you want a form for the ``Author`` model that includes only the ``name``and ``title`` fields, you would specify ``fields`` or ``exclude`` likethis::from django.contrib import adminclass AuthorAdmin(admin.ModelAdmin):fields = ('name', 'title')class AuthorAdmin(admin.ModelAdmin):exclude = ('birth_date',)Since the Author model only has three fields, ``name``, ``title``, and``birth_date``, the forms resulting from the above declarations willcontain exactly the same fields... attribute:: ModelAdmin.fieldsUse the ``fields`` option to make simple layout changes in the forms onthe "add" and "change" pages such as showing only a subset of availablefields, modifying their order, or grouping them into rows. For example, youcould define a simpler version of the admin form for the:class:`django.contrib.flatpages.models.FlatPage` model as follows::class FlatPageAdmin(admin.ModelAdmin):fields = ('url', 'title', 'content')In the above example, only the fields ``url``, ``title`` and ``content``will be displayed, sequentially, in the form. ``fields`` can containvalues defined in :attr:`ModelAdmin.readonly_fields` to be displayed asread-only.For more complex layout needs, see the :attr:`~ModelAdmin.fieldsets` option.The ``fields`` option accepts the same types of values as:attr:`~ModelAdmin.list_display`, except that callables aren't accepted.Names of model and model admin methods will only be used if they're listedin :attr:`~ModelAdmin.readonly_fields`.To display multiple fields on the same line, wrap those fields in their owntuple. In this example, the ``url`` and ``title`` fields will display on thesame line and the ``content`` field will be displayed below them on itsown line::class FlatPageAdmin(admin.ModelAdmin):fields = (('url', 'title'), 'content').. admonition:: NoteThis ``fields`` option should not be confused with the ``fields``dictionary key that is within the :attr:`~ModelAdmin.fieldsets` option,as described in the next section.If neither ``fields`` nor :attr:`~ModelAdmin.fieldsets` options are present,Django will default to displaying each field that isn't an ``AutoField`` andhas ``editable=True``, in a single fieldset, in the same order as the fieldsare defined in the model... attribute:: ModelAdmin.fieldsetsSet ``fieldsets`` to control the layout of admin "add" and "change" pages.``fieldsets`` is a list of two-tuples, in which each two-tuple represents a``<fieldset>`` on the admin form page. (A ``<fieldset>`` is a "section" ofthe form.)The two-tuples are in the format ``(name, field_options)``, where ``name``is a string representing the title of the fieldset and ``field_options`` isa dictionary of information about the fieldset, including a list of fieldsto be displayed in it.A full example, taken from the:class:`django.contrib.flatpages.models.FlatPage` model::from django.contrib import adminclass FlatPageAdmin(admin.ModelAdmin):fieldsets = ((None, {'fields': ('url', 'title', 'content', 'sites')}),('Advanced options', {'classes': ('collapse',),'fields': ('registration_required', 'template_name'),}),)This results in an admin page that looks like:.. image:: _images/fieldsets.pngIf neither ``fieldsets`` nor :attr:`~ModelAdmin.fields` options are present,Django will default to displaying each field that isn't an ``AutoField`` andhas ``editable=True``, in a single fieldset, in the same order as the fieldsare defined in the model.The ``field_options`` dictionary can have the following keys:* ``fields``A tuple of field names to display in this fieldset. This key isrequired.Example::{'fields': ('first_name', 'last_name', 'address', 'city', 'state'),}As with the :attr:`~ModelAdmin.fields` option, to display multiplefields on the same line, wrap those fields in their own tuple. In thisexample, the ``first_name`` and ``last_name`` fields will display onthe same line::{'fields': (('first_name', 'last_name'), 'address', 'city', 'state'),}``fields`` can contain values defined in:attr:`~ModelAdmin.readonly_fields` to be displayed as read-only.If you add the name of a callable to ``fields``, the same rule appliesas with the :attr:`~ModelAdmin.fields` option: the callable must belisted in :attr:`~ModelAdmin.readonly_fields`.* ``classes``A list or tuple containing extra CSS classes to apply to the fieldset.Example::{'classes': ('wide', 'extrapretty'),}Two useful classes defined by the default admin site stylesheet are``collapse`` and ``wide``. Fieldsets with the ``collapse`` stylewill be initially collapsed in the admin and replaced with a small"click to expand" link. Fieldsets with the ``wide`` style will begiven extra horizontal space.* ``description``A string of optional extra text to be displayed at the top of eachfieldset, under the heading of the fieldset. This string is notrendered for :class:`~django.contrib.admin.TabularInline` due to itslayout.Note that this value is *not* HTML-escaped when it's displayed inthe admin interface. This lets you include HTML if you so desire.Alternatively you can use plain text and:func:`django.utils.html.escape` to escape any HTML specialcharacters... attribute:: ModelAdmin.filter_horizontalBy default, a :class:`~django.db.models.ManyToManyField` is displayed inthe admin site with a ``<select multiple>``. However, multiple-select boxescan be difficult to use when selecting many items. Adding a:class:`~django.db.models.ManyToManyField` to this list will instead usea nifty unobtrusive JavaScript "filter" interface that allows searchingwithin the options. The unselected and selected options appear in two boxesside by side. See :attr:`~ModelAdmin.filter_vertical` to use a verticalinterface... attribute:: ModelAdmin.filter_verticalSame as :attr:`~ModelAdmin.filter_horizontal`, but uses a vertical displayof the filter interface with the box of unselected options appearing abovethe box of selected options... attribute:: ModelAdmin.formBy default a ``ModelForm`` is dynamically created for your model. It isused to create the form presented on both the add/change pages. You caneasily provide your own ``ModelForm`` to override any default form behavioron the add/change pages. Alternatively, you can customize the defaultform rather than specifying an entirely new one by using the:meth:`ModelAdmin.get_form` method.For an example see the section :ref:`admin-custom-validation`... admonition:: NoteIf you define the ``Meta.model`` attribute on a:class:`~django.forms.ModelForm`, you must also define the``Meta.fields`` attribute (or the ``Meta.exclude`` attribute). However,since the admin has its own way of defining fields, the ``Meta.fields``attribute will be ignored.If the ``ModelForm`` is only going to be used for the admin, the easiestsolution is to omit the ``Meta.model`` attribute, since ``ModelAdmin``will provide the correct model to use. Alternatively, you can set``fields = []`` in the ``Meta`` class to satisfy the validation on the``ModelForm``... admonition:: NoteIf your ``ModelForm`` and ``ModelAdmin`` both define an ``exclude``option then ``ModelAdmin`` takes precedence::from django import formsfrom django.contrib import adminfrom myapp.models import Personclass PersonForm(forms.ModelForm):class Meta:model = Personexclude = ['name']class PersonAdmin(admin.ModelAdmin):exclude = ['age']form = PersonFormIn the above example, the "age" field will be excluded but the "name"field will be included in the generated form... attribute:: ModelAdmin.formfield_overridesThis provides a quick-and-dirty way to override some of the:class:`~django.forms.Field` options for use in the admin.``formfield_overrides`` is a dictionary mapping a field class to a dict ofarguments to pass to the field at construction time.Since that's a bit abstract, let's look at a concrete example. The mostcommon use of ``formfield_overrides`` is to add a custom widget for acertain type of field. So, imagine we've written a ``RichTextEditorWidget``that we'd like to use for large text fields instead of the default``<textarea>``. Here's how we'd do that::from django.contrib import adminfrom django.db import models# Import our custom widget and our model from where they're definedfrom myapp.models import MyModelfrom myapp.widgets import RichTextEditorWidgetclass MyModelAdmin(admin.ModelAdmin):formfield_overrides = {models.TextField: {'widget': RichTextEditorWidget},}Note that the key in the dictionary is the actual field class, *not* astring. The value is another dictionary; these arguments will be passed tothe form field's ``__init__()`` method. See :doc:`/ref/forms/api` fordetails... warning::If you want to use a custom widget with a relation field (i.e.:class:`~django.db.models.ForeignKey` or:class:`~django.db.models.ManyToManyField`), make sure you haven'tincluded that field's name in ``raw_id_fields``, ``radio_fields``, or``autocomplete_fields``.``formfield_overrides`` won't let you change the widget on relationfields that have ``raw_id_fields``, ``radio_fields``, or``autocomplete_fields`` set. That's because ``raw_id_fields``,``radio_fields``, and ``autocomplete_fields`` imply custom widgets oftheir own... attribute:: ModelAdmin.inlinesSee :class:`InlineModelAdmin` objects below as well as:meth:`ModelAdmin.get_formsets_with_inlines`... attribute:: ModelAdmin.list_displaySet ``list_display`` to control which fields are displayed on the changelist page of the admin.Example::list_display = ('first_name', 'last_name')If you don't set ``list_display``, the admin site will display a singlecolumn that displays the ``__str__()`` representation of each object.There are four types of values that can be used in ``list_display``. Allbut the simplest may use the :func:`~django.contrib.admin.display`decorator, which is used to customize how the field is presented:* The name of a model field. For example::class PersonAdmin(admin.ModelAdmin):list_display = ('first_name', 'last_name')* A callable that accepts one argument, the model instance. For example::@admin.display(description='Name')def upper_case_name(obj):return ("%s %s" % (obj.first_name, obj.last_name)).upper()class PersonAdmin(admin.ModelAdmin):list_display = (upper_case_name,)* A string representing a ``ModelAdmin`` method that accepts one argument,the model instance. For example::class PersonAdmin(admin.ModelAdmin):list_display = ('upper_case_name',)@admin.display(description='Name')def upper_case_name(self, obj):return ("%s %s" % (obj.first_name, obj.last_name)).upper()* A string representing a model attribute or method (without any requiredarguments). For example::from django.contrib import adminfrom django.db import modelsclass Person(models.Model):name = models.CharField(max_length=50)birthday = models.DateField()@admin.display(description='Birth decade')def decade_born_in(self):return '%d’s' % (self.birthday.year // 10 * 10)class PersonAdmin(admin.ModelAdmin):list_display = ('name', 'decade_born_in')A few special cases to note about ``list_display``:* If the field is a ``ForeignKey``, Django will display the``__str__()`` of the related object.* ``ManyToManyField`` fields aren't supported, because that wouldentail executing a separate SQL statement for each row in the table.If you want to do this nonetheless, give your model a custom method,and add that method's name to ``list_display``. (See below for moreon custom methods in ``list_display``.)* If the field is a ``BooleanField``, Django will display a pretty "yes","no", or "unknown" icon instead of ``True``, ``False``, or ``None``.* If the string given is a method of the model, ``ModelAdmin`` or acallable, Django will HTML-escape the output by default. To escapeuser input and allow your own unescaped tags, use:func:`~django.utils.html.format_html`.Here's a full example model::from django.contrib import adminfrom django.db import modelsfrom django.utils.html import format_htmlclass Person(models.Model):first_name = models.CharField(max_length=50)last_name = models.CharField(max_length=50)color_code = models.CharField(max_length=6)@admin.displaydef colored_name(self):return format_html('<span style="color: #{};">{} {}</span>',self.color_code,self.first_name,self.last_name,)class PersonAdmin(admin.ModelAdmin):list_display = ('first_name', 'last_name', 'colored_name')* As some examples have already demonstrated, when using a callable, amodel method, or a ``ModelAdmin`` method, you can customize the column'stitle by wrapping the callable with the:func:`~django.contrib.admin.display` decorator and passing the``description`` argument.* If the value of a field is ``None``, an empty string, or an iterablewithout elements, Django will display ``-`` (a dash). You can overridethis with :attr:`AdminSite.empty_value_display`::from django.contrib import adminadmin.site.empty_value_display = '(None)'You can also use :attr:`ModelAdmin.empty_value_display`::class PersonAdmin(admin.ModelAdmin):empty_value_display = 'unknown'Or on a field level::class PersonAdmin(admin.ModelAdmin):list_display = ('name', 'birth_date_view')@admin.display(empty_value='unknown')def birth_date_view(self, obj):return obj.birth_date* If the string given is a method of the model, ``ModelAdmin`` or acallable that returns ``True``, ``False``, or ``None``, Django willdisplay a pretty "yes", "no", or "unknown" icon if you wrap the methodwith the :func:`~django.contrib.admin.display` decorator passing the``boolean`` argument with the value set to ``True``::from django.contrib import adminfrom django.db import modelsclass Person(models.Model):first_name = models.CharField(max_length=50)birthday = models.DateField()@admin.display(boolean=True)def born_in_fifties(self):return 1950 <= self.birthday.year < 1960class PersonAdmin(admin.ModelAdmin):list_display = ('name', 'born_in_fifties')* The ``__str__()`` method is just as valid in ``list_display`` as anyother model method, so it's perfectly OK to do this::list_display = ('__str__', 'some_other_field')* Usually, elements of ``list_display`` that aren't actual databasefields can't be used in sorting (because Django does all the sortingat the database level).However, if an element of ``list_display`` represents a certain databasefield, you can indicate this fact by using the:func:`~django.contrib.admin.display` decorator on the method, passingthe ``ordering`` argument::from django.contrib import adminfrom django.db import modelsfrom django.utils.html import format_htmlclass Person(models.Model):first_name = models.CharField(max_length=50)color_code = models.CharField(max_length=6)@admin.display(ordering='first_name')def colored_first_name(self):return format_html('<span style="color: #{};">{}</span>',self.color_code,self.first_name,)class PersonAdmin(admin.ModelAdmin):list_display = ('first_name', 'colored_first_name')The above will tell Django to order by the ``first_name`` field whentrying to sort by ``colored_first_name`` in the admin.To indicate descending order with the ``ordering`` argument you can use ahyphen prefix on the field name. Using the above example, this would looklike::@admin.display(ordering='-first_name')The ``ordering`` argument supports query lookups to sort by values onrelated models. This example includes an "author first name" column inthe list display and allows sorting it by first name::class Blog(models.Model):title = models.CharField(max_length=255)author = models.ForeignKey(Person, on_delete=models.CASCADE)class BlogAdmin(admin.ModelAdmin):list_display = ('title', 'author', 'author_first_name')@admin.display(ordering='author__first_name')def author_first_name(self, obj):return obj.author.first_name:doc:`Query expressions </ref/models/expressions>` may be used with the``ordering`` argument::from django.db.models import Valuefrom django.db.models.functions import Concatclass Person(models.Model):first_name = models.CharField(max_length=50)last_name = models.CharField(max_length=50)@admin.display(ordering=Concat('first_name', Value(' '), 'last_name'))def full_name(self):return self.first_name + ' ' + self.last_name* Elements of ``list_display`` can also be properties::class Person(models.Model):first_name = models.CharField(max_length=50)last_name = models.CharField(max_length=50)@property@admin.display(ordering='last_name',description='Full name of the person',)def full_name(self):return self.first_name + ' ' + self.last_nameclass PersonAdmin(admin.ModelAdmin):list_display = ('full_name',)Note that ``@property`` must be above ``@display``. If you're using theold way -- setting the display-related attributes directly rather thanusing the :func:`~django.contrib.admin.display` decorator -- be awarethat the ``property()`` function and **not** the ``@property`` decoratormust be used::def my_property(self):return self.first_name + ' ' + self.last_namemy_property.short_description = "Full name of the person"my_property.admin_order_field = 'last_name'full_name = property(my_property)* The field names in ``list_display`` will also appear as CSS classes inthe HTML output, in the form of ``column-<field_name>`` on each ``<th>``element. This can be used to set column widths in a CSS file for example.* Django will try to interpret every element of ``list_display`` in thisorder:* A field of the model.* A callable.* A string representing a ``ModelAdmin`` attribute.* A string representing a model attribute.For example if you have ``first_name`` as a model field andas a ``ModelAdmin`` attribute, the model field will be used... attribute:: ModelAdmin.list_display_linksUse ``list_display_links`` to control if and which fields in:attr:`list_display` should be linked to the "change" page for an object.By default, the change list page will link the first column -- the firstfield specified in ``list_display`` -- to the change page for each item.But ``list_display_links`` lets you change this:* Set it to ``None`` to get no links at all.* Set it to a list or tuple of fields (in the same format as``list_display``) whose columns you want converted to links.You can specify one or many fields. As long as the fields appear in``list_display``, Django doesn't care how many (or how few) fields arelinked. The only requirement is that if you want to use``list_display_links`` in this fashion, you must define ``list_display``.In this example, the ``first_name`` and ``last_name`` fields will belinked on the change list page::class PersonAdmin(admin.ModelAdmin):list_display = ('first_name', 'last_name', 'birthday')list_display_links = ('first_name', 'last_name')In this example, the change list page grid will have no links::class AuditEntryAdmin(admin.ModelAdmin):list_display = ('timestamp', 'message')list_display_links = None.. _admin-list-editable:.. attribute:: ModelAdmin.list_editableSet ``list_editable`` to a list of field names on the model which willallow editing on the change list page. That is, fields listed in``list_editable`` will be displayed as form widgets on the change listpage, allowing users to edit and save multiple rows at once... note::``list_editable`` interacts with a couple of other options inparticular ways; you should note the following rules:* Any field in ``list_editable`` must also be in ``list_display``.You can't edit a field that's not displayed!* The same field can't be listed in both ``list_editable`` and``list_display_links`` -- a field can't be both a form anda link.You'll get a validation error if either of these rules are broken... attribute:: ModelAdmin.list_filterSet ``list_filter`` to activate filters in the right sidebar of the changelist page of the admin.At it's simplest ``list_filter`` takes a list or tuple of field names toactivate filtering upon, but several more advanced options as available.See :ref:`modeladmin-list-filters` for the details... attribute:: ModelAdmin.list_max_show_allSet ``list_max_show_all`` to control how many items can appear on a "Showall" admin change list page. The admin will display a "Show all" link on thechange list only if the total result count is less than or equal to thissetting. By default, this is set to ``200``... attribute:: ModelAdmin.list_per_pageSet ``list_per_page`` to control how many items appear on each paginatedadmin change list page. By default, this is set to ``100``... attribute:: ModelAdmin.list_select_relatedSet ``list_select_related`` to tell Django to use:meth:`~django.db.models.query.QuerySet.select_related` in retrievingthe list of objects on the admin change list page. This can save you abunch of database queries.The value should be either a boolean, a list or a tuple. Default is``False``.When value is ``True``, ``select_related()`` will always be called. Whenvalue is set to ``False``, Django will look at ``list_display`` and call``select_related()`` if any ``ForeignKey`` is present.If you need more fine-grained control, use a tuple (or list) as value for``list_select_related``. Empty tuple will prevent Django from calling``select_related`` at all. Any other tuple will be passed directly to``select_related`` as parameters. For example::class ArticleAdmin(admin.ModelAdmin):list_select_related = ('author', 'category')will call ``select_related('author', 'category')``.If you need to specify a dynamic value based on the request, you canimplement a :meth:`~ModelAdmin.get_list_select_related` method... note::``ModelAdmin`` ignores this attribute when:meth:`~django.db.models.query.QuerySet.select_related` was alreadycalled on the changelist's ``QuerySet``... attribute:: ModelAdmin.orderingSet ``ordering`` to specify how lists of objects should be ordered in theDjango admin views. This should be a list or tuple in the same format as amodel's :attr:`~django.db.models.Options.ordering` parameter.If this isn't provided, the Django admin will use the model's defaultordering.If you need to specify a dynamic order (for example depending on user orlanguage) you can implement a :meth:`~ModelAdmin.get_ordering` method... admonition:: Performance considerations with ordering and sortingTo ensure a deterministic ordering of results, the changelist adds``pk`` to the ordering if it can't find a single or unique together setof fields that provide total ordering.For example, if the default ordering is by a non-unique ``name`` field,then the changelist is sorted by ``name`` and ``pk``. This couldperform poorly if you have a lot of rows and don't have an index on``name`` and ``pk``... attribute:: ModelAdmin.paginatorThe paginator class to be used for pagination. By default,:class:`django.core.paginator.Paginator` is used. If the custom paginatorclass doesn't have the same constructor interface as:class:`django.core.paginator.Paginator`, you will also need toprovide an implementation for :meth:`ModelAdmin.get_paginator`... attribute:: ModelAdmin.prepopulated_fieldsSet ``prepopulated_fields`` to a dictionary mapping field names to thefields it should prepopulate from::class ArticleAdmin(admin.ModelAdmin):prepopulated_fields = {"slug": ("title",)}When set, the given fields will use a bit of JavaScript to populate fromthe fields assigned. The main use for this functionality is toautomatically generate the value for ``SlugField`` fields from one or moreother fields. The generated value is produced by concatenating the valuesof the source fields, and then by transforming that result into a validslug (e.g. substituting dashes for spaces and lowercasing ASCII letters).Prepopulated fields aren't modified by JavaScript after a value has beensaved. It's usually undesired that slugs change (which would cause anobject's URL to change if the slug is used in it).``prepopulated_fields`` doesn't accept ``DateTimeField``, ``ForeignKey``,``OneToOneField``, and ``ManyToManyField`` fields... attribute:: ModelAdmin.preserve_filtersBy default, applied filters are preserved on the list view after creating,editing, or deleting an object. You can have filters cleared by settingthis attribute to ``False``... attribute:: ModelAdmin.radio_fieldsBy default, Django's admin uses a select-box interface (<select>) forfields that are ``ForeignKey`` or have ``choices`` set. If a field ispresent in ``radio_fields``, Django will use a radio-button interfaceinstead. Assuming ``group`` is a ``ForeignKey`` on the ``Person`` model::class PersonAdmin(admin.ModelAdmin):radio_fields = {"group": admin.VERTICAL}You have the choice of using ``HORIZONTAL`` or ``VERTICAL`` from the``django.contrib.admin`` module.Don't include a field in ``radio_fields`` unless it's a ``ForeignKey`` or has``choices`` set... attribute:: ModelAdmin.autocomplete_fields``autocomplete_fields`` is a list of ``ForeignKey`` and/or``ManyToManyField`` fields you would like to change to `Select2<https://select2.org/>`_ autocomplete inputs.By default, the admin uses a select-box interface (``<select>``) forthose fields. Sometimes you don't want to incur the overhead of selectingall the related instances to display in the dropdown.The Select2 input looks similar to the default input but comes with asearch feature that loads the options asynchronously. This is faster andmore user-friendly if the related model has many instances.You must define :attr:`~ModelAdmin.search_fields` on the related object's``ModelAdmin`` because the autocomplete search uses it.To avoid unauthorized data disclosure, users must have the ``view`` or``change`` permission to the related object in order to use autocomplete.Ordering and pagination of the results are controlled by the related``ModelAdmin``'s :meth:`~ModelAdmin.get_ordering` and:meth:`~ModelAdmin.get_paginator` methods.In the following example, ``ChoiceAdmin`` has an autocomplete field for the``ForeignKey`` to the ``Question``. The results are filtered by the``question_text`` field and ordered by the ``date_created`` field::class QuestionAdmin(admin.ModelAdmin):ordering = ['date_created']search_fields = ['question_text']class ChoiceAdmin(admin.ModelAdmin):autocomplete_fields = ['question'].. admonition:: Performance considerations for large datasetsOrdering using :attr:`ModelAdmin.ordering` may cause performanceproblems as sorting on a large queryset will be slow.Also, if your search fields include fields that aren't indexed by thedatabase, you might encounter poor performance on extremely largetables.For those cases, it's a good idea to write your own:func:`ModelAdmin.get_search_results` implementation using afull-text indexed search.You may also want to change the ``Paginator`` on very large tablesas the default paginator always performs a ``count()`` query.For example, you could override the default implementation of the``Paginator.count`` property... attribute:: ModelAdmin.raw_id_fieldsBy default, Django's admin uses a select-box interface (<select>) forfields that are ``ForeignKey``. Sometimes you don't want to incur theoverhead of having to select all the related instances to display in thedrop-down.``raw_id_fields`` is a list of fields you would like to changeinto an ``Input`` widget for either a ``ForeignKey`` or``ManyToManyField``::class ArticleAdmin(admin.ModelAdmin):raw_id_fields = ("newspaper",)The ``raw_id_fields`` ``Input`` widget should contain a primary key if thefield is a ``ForeignKey`` or a comma separated list of values if the fieldis a ``ManyToManyField``. The ``raw_id_fields`` widget shows a magnifyingglass button next to the field which allows users to search for and selecta value:.. image:: _images/raw_id_fields.png.. attribute:: ModelAdmin.readonly_fieldsBy default the admin shows all fields as editable. Any fields in thisoption (which should be a ``list`` or ``tuple``) will display its dataas-is and non-editable; they are also excluded from the:class:`~django.forms.ModelForm` used for creating and editing. Note thatwhen specifying :attr:`ModelAdmin.fields` or :attr:`ModelAdmin.fieldsets`the read-only fields must be present to be shown (they are ignoredotherwise).If ``readonly_fields`` is used without defining explicit ordering through:attr:`ModelAdmin.fields` or :attr:`ModelAdmin.fieldsets` they will beadded last after all editable fields.A read-only field can not only display data from a model's field, it canalso display the output of a model's method or a method of the``ModelAdmin`` class itself. This is very similar to the way:attr:`ModelAdmin.list_display` behaves. This provides a way to use theadmin interface to provide feedback on the status of the objects beingedited, for example::from django.contrib import adminfrom django.utils.html import format_html_joinfrom django.utils.safestring import mark_safeclass PersonAdmin(admin.ModelAdmin):readonly_fields = ('address_report',)# description functions like a model field's verbose_name@admin.display(description='Address')def address_report(self, instance):# assuming get_full_address() returns a list of strings# for each line of the address and you want to separate each# line by a linebreakreturn format_html_join(mark_safe('<br>'),'{}',((line,) for line in instance.get_full_address()),) or mark_safe("<span class='errors'>I can't determine this address.</span>").. attribute:: ModelAdmin.save_asSet ``save_as`` to enable a "save as new" feature on admin change forms.Normally, objects have three save options: "Save", "Save and continueediting", and "Save and add another". If ``save_as`` is ``True``, "Saveand add another" will be replaced by a "Save as new" button that creates anew object (with a new ID) rather than updating the existing object.By default, ``save_as`` is set to ``False``... attribute:: ModelAdmin.save_as_continueWhen :attr:`save_as=True <save_as>`, the default redirect after saving thenew object is to the change view for that object. If you set``save_as_continue=False``, the redirect will be to the changelist view.By default, ``save_as_continue`` is set to ``True``... attribute:: ModelAdmin.save_on_topSet ``save_on_top`` to add save buttons across the top of your admin changeforms.Normally, the save buttons appear only at the bottom of the forms. If youset ``save_on_top``, the buttons will appear both on the top and thebottom.By default, ``save_on_top`` is set to ``False``... attribute:: ModelAdmin.search_fieldsSet ``search_fields`` to enable a search box on the admin change list page.This should be set to a list of field names that will be searched wheneversomebody submits a search query in that text box.These fields should be some kind of text field, such as ``CharField`` or``TextField``. You can also perform a related lookup on a ``ForeignKey`` or``ManyToManyField`` with the lookup API "follow" notation::search_fields = ['foreign_key__related_fieldname']For example, if you have a blog entry with an author, the followingdefinition would enable searching blog entries by the email address of theauthor::search_fields = ['user__email']When somebody does a search in the admin search box, Django splits thesearch query into words and returns all objects that contain each of thewords, case-insensitive (using the :lookup:`icontains` lookup), where eachword must be in at least one of ``search_fields``. For example, if``search_fields`` is set to ``['first_name', 'last_name']`` and a usersearches for ``john lennon``, Django will do the equivalent of this SQL``WHERE`` clause:.. code-block:: sqlWHERE (first_name ILIKE '%john%' OR last_name ILIKE '%john%')AND (first_name ILIKE '%lennon%' OR last_name ILIKE '%lennon%')The search query can contain quoted phrases with spaces. For example, if auser searches for ``"john winston"`` or ``'john winston'``, Django will dothe equivalent of this SQL ``WHERE`` clause:.. code-block:: sqlWHERE (first_name ILIKE '%john winston%' OR last_name ILIKE '%john winston%')If you don't want to use ``icontains`` as the lookup, you can use anylookup by appending it the field. For example, you could use :lookup:`exact`by setting ``search_fields`` to ``['first_name__exact']``.Some (older) shortcuts for specifying a field lookup are also available.You can prefix a field in ``search_fields`` with the following charactersand it's equivalent to adding ``__<lookup>`` to the field:====== ====================Prefix Lookup====== ====================^ :lookup:`startswith`= :lookup:`iexact`@ :lookup:`search`None :lookup:`icontains`====== ====================If you need to customize search you can use:meth:`ModelAdmin.get_search_results` to provide additional or alternatesearch behavior... versionchanged:: 4.1Searches using multiple search terms are now applied in a single callto ``filter()``, rather than in sequential ``filter()`` calls.For multi-valued relationships, this means that rows from the relatedmodel must match all terms rather than any term. For example, if``search_fields`` is set to ``['child__name', 'child__age']``, and auser searches for ``'Jamal 17'``, parent rows will be returned only ifthere is a relationship to some 17-year-old child named Jamal, ratherthan also returning parents who merely have a younger or older childnamed Jamal in addition to some other 17-year-old.See the :ref:`spanning-multi-valued-relationships` topic for morediscussion of this difference... attribute:: ModelAdmin.search_help_text.. versionadded:: 4.0Set ``search_help_text`` to specify a descriptive text for the search boxwhich will be displayed below it... attribute:: ModelAdmin.show_full_result_countSet ``show_full_result_count`` to control whether the full count of objectsshould be displayed on a filtered admin page (e.g. ``99 results (103 total)``).If this option is set to ``False``, a text like ``99 results (Show all)``is displayed instead.The default of ``show_full_result_count=True`` generates a query to performa full count on the table which can be expensive if the table contains alarge number of rows... attribute:: ModelAdmin.sortable_byBy default, the change list page allows sorting by all model fields (andcallables that use the ``ordering`` argument to the:func:`~django.contrib.admin.display` decorator or have the``admin_order_field`` attribute) specified in :attr:`list_display`.If you want to disable sorting for some columns, set ``sortable_by`` toa collection (e.g. ``list``, ``tuple``, or ``set``) of the subset of:attr:`list_display` that you want to be sortable. An empty collectiondisables sorting for all columns.If you need to specify this list dynamically, implement a:meth:`~ModelAdmin.get_sortable_by` method instead... attribute:: ModelAdmin.view_on_siteSet ``view_on_site`` to control whether or not to display the "View on site" link.This link should bring you to a URL where you can display the saved object.This value can be either a boolean flag or a callable. If ``True`` (thedefault), the object's :meth:`~django.db.models.Model.get_absolute_url`method will be used to generate the url.If your model has a :meth:`~django.db.models.Model.get_absolute_url` methodbut you don't want the "View on site" button to appear, you only need to set``view_on_site`` to ``False``::from django.contrib import adminclass PersonAdmin(admin.ModelAdmin):view_on_site = FalseIn case it is a callable, it accepts the model instance as a parameter.For example::from django.contrib import adminfrom django.urls import reverseclass PersonAdmin(admin.ModelAdmin):def view_on_site(self, obj):url = reverse('person-detail', kwargs={'slug': obj.slug})return 'https://example.com' + urlCustom template options~~~~~~~~~~~~~~~~~~~~~~~The :ref:`admin-overriding-templates` section describes how to override or extendthe default admin templates. Use the following options to override the defaulttemplates used by the :class:`ModelAdmin` views:.. attribute:: ModelAdmin.add_form_templatePath to a custom template, used by :meth:`add_view`... attribute:: ModelAdmin.change_form_templatePath to a custom template, used by :meth:`change_view`... attribute:: ModelAdmin.change_list_templatePath to a custom template, used by :meth:`changelist_view`... attribute:: ModelAdmin.delete_confirmation_templatePath to a custom template, used by :meth:`delete_view` for displaying aconfirmation page when deleting one or more objects... attribute:: ModelAdmin.delete_selected_confirmation_templatePath to a custom template, used by the ``delete_selected`` action methodfor displaying a confirmation page when deleting one or more objects. Seethe :doc:`actions documentation</ref/contrib/admin/actions>`... attribute:: ModelAdmin.object_history_templatePath to a custom template, used by :meth:`history_view`... attribute:: ModelAdmin.popup_response_templatePath to a custom template, used by :meth:`response_add`,:meth:`response_change`, and :meth:`response_delete`... _model-admin-methods:``ModelAdmin`` methods----------------------.. warning::When overriding :meth:`ModelAdmin.save_model` and:meth:`ModelAdmin.delete_model`, your code must save/delete theobject. They aren't meant for veto purposes, rather they allow you toperform extra operations... method:: ModelAdmin.save_model(request, obj, form, change)The ``save_model`` method is given the ``HttpRequest``, a model instance,a ``ModelForm`` instance, and a boolean value based on whether it is addingor changing the object. Overriding this method allows doing pre- orpost-save operations. Call ``super().save_model()`` to save the objectusing :meth:`.Model.save`.For example to attach ``request.user`` to the object prior to saving::from django.contrib import adminclass ArticleAdmin(admin.ModelAdmin):def save_model(self, request, obj, form, change):obj.user = request.usersuper().save_model(request, obj, form, change).. method:: ModelAdmin.delete_model(request, obj)The ``delete_model`` method is given the ``HttpRequest`` and a modelinstance. Overriding this method allows doing pre- or post-deleteoperations. Call ``super().delete_model()`` to delete the object using:meth:`.Model.delete`... method:: ModelAdmin.delete_queryset(request, queryset)The ``delete_queryset()`` method is given the ``HttpRequest`` and a``QuerySet`` of objects to be deleted. Override this method to customizethe deletion process for the "delete selected objects" :doc:`action<actions>`... method:: ModelAdmin.save_formset(request, form, formset, change)The ``save_formset`` method is given the ``HttpRequest``, the parent``ModelForm`` instance and a boolean value based on whether it is adding orchanging the parent object.For example, to attach ``request.user`` to each changed formsetmodel instance::class ArticleAdmin(admin.ModelAdmin):def save_formset(self, request, form, formset, change):instances = formset.save(commit=False)for obj in formset.deleted_objects:obj.delete()for instance in instances:instance.user = request.userinstance.save()formset.save_m2m()See also :ref:`saving-objects-in-the-formset`... method:: ModelAdmin.get_ordering(request)The ``get_ordering`` method takes a ``request`` as parameter andis expected to return a ``list`` or ``tuple`` for ordering similarto the :attr:`ordering` attribute. For example::class PersonAdmin(admin.ModelAdmin):def get_ordering(self, request):if request.user.is_superuser:return ['name', 'rank']else:return ['name'].. method:: ModelAdmin.get_search_results(request, queryset, search_term)The ``get_search_results`` method modifies the list of objects displayedinto those that match the provided search term. It accepts the request, aqueryset that applies the current filters, and the user-provided search term.It returns a tuple containing a queryset modified to implement the search, anda boolean indicating if the results may contain duplicates.The default implementation searches the fields named in :attr:`ModelAdmin.search_fields`.This method may be overridden with your own custom search method. Forexample, you might wish to search by an integer field, or use an externaltool such as `Solr`_ or `Haystack`_. You must establish if the querysetchanges implemented by your search method may introduce duplicates into theresults, and return ``True`` in the second element of the return value.For example, to search by ``name`` and ``age``, you could use::class PersonAdmin(admin.ModelAdmin):list_display = ('name', 'age')search_fields = ('name',)def get_search_results(self, request, queryset, search_term):queryset, may_have_duplicates = super().get_search_results(request, queryset, search_term,)try:search_term_as_int = int(search_term)except ValueError:passelse:queryset |= self.model.objects.filter(age=search_term_as_int)return queryset, may_have_duplicatesThis implementation is more efficient than ``search_fields =('name', '=age')`` which results in a string comparison for the numericfield, for example ``... OR UPPER("polls_choice"."votes"::text) = UPPER('4')``on PostgreSQL... versionchanged:: 4.1Searches using multiple search terms are now applied in a single callto ``filter()``, rather than in sequential ``filter()`` calls.For multi-valued relationships, this means that rows from the relatedmodel must match all terms rather than any term. For example, if``search_fields`` is set to ``['child__name', 'child__age']``, and auser searches for ``'Jamal 17'``, parent rows will be returned only ifthere is a relationship to some 17-year-old child named Jamal, ratherthan also returning parents who merely have a younger or older childnamed Jamal in addition to some other 17-year-old.See the :ref:`spanning-multi-valued-relationships` topic for morediscussion of this difference... _Solr: https://solr.apache.org.. _Haystack: https://haystacksearch.org.. method:: ModelAdmin.save_related(request, form, formsets, change)The ``save_related`` method is given the ``HttpRequest``, the parent``ModelForm`` instance, the list of inline formsets and a boolean valuebased on whether the parent is being added or changed. Here you can do anypre- or post-save operations for objects related to the parent. Notethat at this point the parent object and its form have already been saved... method:: ModelAdmin.get_autocomplete_fields(request)The ``get_autocomplete_fields()`` method is given the ``HttpRequest`` and isexpected to return a ``list`` or ``tuple`` of field names that will bedisplayed with an autocomplete widget as described above in the:attr:`ModelAdmin.autocomplete_fields` section... method:: ModelAdmin.get_readonly_fields(request, obj=None)The ``get_readonly_fields`` method is given the ``HttpRequest`` and the``obj`` being edited (or ``None`` on an add form) and is expected to returna ``list`` or ``tuple`` of field names that will be displayed as read-only,as described above in the :attr:`ModelAdmin.readonly_fields` section... method:: ModelAdmin.get_prepopulated_fields(request, obj=None)The ``get_prepopulated_fields`` method is given the ``HttpRequest`` and the``obj`` being edited (or ``None`` on an add form) and is expected to returna ``dictionary``, as described above in the :attr:`ModelAdmin.prepopulated_fields`section... method:: ModelAdmin.get_list_display(request)The ``get_list_display`` method is given the ``HttpRequest`` and isexpected to return a ``list`` or ``tuple`` of field names that will bedisplayed on the changelist view as described above in the:attr:`ModelAdmin.list_display` section... method:: ModelAdmin.get_list_display_links(request, list_display)The ``get_list_display_links`` method is given the ``HttpRequest`` andthe ``list`` or ``tuple`` returned by :meth:`ModelAdmin.get_list_display`.It is expected to return either ``None`` or a ``list`` or ``tuple`` of fieldnames on the changelist that will be linked to the change view, as describedin the :attr:`ModelAdmin.list_display_links` section... method:: ModelAdmin.get_exclude(request, obj=None)The ``get_exclude`` method is given the ``HttpRequest`` and the ``obj``being edited (or ``None`` on an add form) and is expected to return a listof fields, as described in :attr:`ModelAdmin.exclude`... method:: ModelAdmin.get_fields(request, obj=None)The ``get_fields`` method is given the ``HttpRequest`` and the ``obj``being edited (or ``None`` on an add form) and is expected to return a listof fields, as described above in the :attr:`ModelAdmin.fields` section... method:: ModelAdmin.get_fieldsets(request, obj=None)The ``get_fieldsets`` method is given the ``HttpRequest`` and the ``obj``being edited (or ``None`` on an add form) and is expected to return a listof two-tuples, in which each two-tuple represents a ``<fieldset>`` on theadmin form page, as described above in the :attr:`ModelAdmin.fieldsets` section... method:: ModelAdmin.get_list_filter(request)The ``get_list_filter`` method is given the ``HttpRequest`` and is expectedto return the same kind of sequence type as for the:attr:`~ModelAdmin.list_filter` attribute... method:: ModelAdmin.get_list_select_related(request)The ``get_list_select_related`` method is given the ``HttpRequest`` andshould return a boolean or list as :attr:`ModelAdmin.list_select_related`does... method:: ModelAdmin.get_search_fields(request)The ``get_search_fields`` method is given the ``HttpRequest`` and is expectedto return the same kind of sequence type as for the:attr:`~ModelAdmin.search_fields` attribute... method:: ModelAdmin.get_sortable_by(request)The ``get_sortable_by()`` method is passed the ``HttpRequest`` and isexpected to return a collection (e.g. ``list``, ``tuple``, or ``set``) offield names that will be sortable in the change list page.Its default implementation returns :attr:`sortable_by` if it's set,otherwise it defers to :meth:`get_list_display`.For example, to prevent one or more columns from being sortable::class PersonAdmin(admin.ModelAdmin):def get_sortable_by(self, request):return {*self.get_list_display(request)} - {'rank'}.. method:: ModelAdmin.get_inline_instances(request, obj=None)The ``get_inline_instances`` method is given the ``HttpRequest`` and the``obj`` being edited (or ``None`` on an add form) and is expected to returna ``list`` or ``tuple`` of :class:`~django.contrib.admin.InlineModelAdmin`objects, as described below in the :class:`~django.contrib.admin.InlineModelAdmin`section. For example, the following would return inlines without the defaultfiltering based on add, change, delete, and view permissions::class MyModelAdmin(admin.ModelAdmin):inlines = (MyInline,)def get_inline_instances(self, request, obj=None):return [inline(self.model, self.admin_site) for inline in self.inlines]If you override this method, make sure that the returned inlines areinstances of the classes defined in :attr:`inlines` or you might encountera "Bad Request" error when adding related objects... method:: ModelAdmin.get_inlines(request, obj)The ``get_inlines`` method is given the ``HttpRequest`` and the``obj`` being edited (or ``None`` on an add form) and is expected to returnan iterable of inlines. You can override this method to dynamically addinlines based on the request or model instance instead of specifying themin :attr:`ModelAdmin.inlines`... method:: ModelAdmin.get_urls()The ``get_urls`` method on a ``ModelAdmin`` returns the URLs to be used forthat ModelAdmin in the same way as a URLconf. Therefore you can extendthem as documented in :doc:`/topics/http/urls`, using the``AdminSite.admin_view()`` wrapper on your views::from django.contrib import adminfrom django.template.response import TemplateResponsefrom django.urls import pathclass MyModelAdmin(admin.ModelAdmin):def get_urls(self):urls = super().get_urls()my_urls = [path('my_view/', self.admin_site.admin_view(self.my_view))]return my_urls + urlsdef my_view(self, request):# ...context = dict(# Include common variables for rendering the admin template.self.admin_site.each_context(request),# Anything else you want in the context...key=value,)return TemplateResponse(request, "sometemplate.html", context)If you want to use the admin layout, extend from ``admin/base_site.html``:.. code-block:: html+django{% extends "admin/base_site.html" %}{% block content %}...{% endblock %}.. note::Notice how the ``self.my_view`` function is wrapped in``self.admin_site.admin_view``. This is important, since it ensures twothings:#. Permission checks are run, ensuring only active staff users canaccess the view.#. The :func:`django.views.decorators.cache.never_cache` decorator isapplied to prevent caching, ensuring the returned information isup-to-date... note::Notice that the custom patterns are included *before* the regular adminURLs: the admin URL patterns are very permissive and will match nearlyanything, so you'll usually want to prepend your custom URLs to thebuilt-in ones.In this example, ``my_view`` will be accessed at``/admin/myapp/mymodel/my_view/`` (assuming the admin URLs are includedat ``/admin/``.)If the page is cacheable, but you still want the permission check to beperformed, you can pass a ``cacheable=True`` argument to``AdminSite.admin_view()``::path('my_view/', self.admin_site.admin_view(self.my_view, cacheable=True))``ModelAdmin`` views have ``model_admin`` attributes. Other``AdminSite`` views have ``admin_site`` attributes... method:: ModelAdmin.get_form(request, obj=None, **kwargs)Returns a :class:`~django.forms.ModelForm` class for use in the admin addand change views, see :meth:`add_view` and :meth:`change_view`.The base implementation uses :func:`~django.forms.models.modelform_factory`to subclass :attr:`~form`, modified by attributes such as :attr:`~fields`and :attr:`~exclude`. So, for example, if you wanted to offer additionalfields to superusers, you could swap in a different base form like so::class MyModelAdmin(admin.ModelAdmin):def get_form(self, request, obj=None, **kwargs):if request.user.is_superuser:kwargs['form'] = MySuperuserFormreturn super().get_form(request, obj, **kwargs)You may also return a custom :class:`~django.forms.ModelForm` classdirectly... method:: ModelAdmin.get_formsets_with_inlines(request, obj=None)Yields (``FormSet``, :class:`InlineModelAdmin`) pairs for use in admin addand change views.For example if you wanted to display a particular inline only in the changeview, you could override ``get_formsets_with_inlines`` as follows::class MyModelAdmin(admin.ModelAdmin):inlines = [MyInline, SomeOtherInline]def get_formsets_with_inlines(self, request, obj=None):for inline in self.get_inline_instances(request, obj):# hide MyInline in the add viewif not isinstance(inline, MyInline) or obj is not None:yield inline.get_formset(request, obj), inline.. method:: ModelAdmin.formfield_for_foreignkey(db_field, request, **kwargs)The ``formfield_for_foreignkey`` method on a ``ModelAdmin`` allows you tooverride the default formfield for a foreign keys field. For example, toreturn a subset of objects for this foreign key field based on the user::class MyModelAdmin(admin.ModelAdmin):def formfield_for_foreignkey(self, db_field, request, **kwargs):if db_field.name == "car":kwargs["queryset"] = Car.objects.filter(owner=request.user)return super().formfield_for_foreignkey(db_field, request, **kwargs)This uses the ``HttpRequest`` instance to filter the ``Car`` foreign keyfield to only display the cars owned by the ``User`` instance.For more complex filters, you can use ``ModelForm.__init__()`` method tofilter based on an ``instance`` of your model (see:ref:`fields-which-handle-relationships`). For example::class CountryAdminForm(forms.ModelForm):def __init__(self, *args, **kwargs):super().__init__(*args, **kwargs)self.fields['capital'].queryset = self.instance.cities.all()class CountryAdmin(admin.ModelAdmin):form = CountryAdminForm.. method:: ModelAdmin.formfield_for_manytomany(db_field, request, **kwargs)Like the ``formfield_for_foreignkey`` method, the``formfield_for_manytomany`` method can be overridden to change thedefault formfield for a many to many field. For example, if an owner canown multiple cars and cars can belong to multiple owners -- a many tomany relationship -- you could filter the ``Car`` foreign key field toonly display the cars owned by the ``User``::class MyModelAdmin(admin.ModelAdmin):def formfield_for_manytomany(self, db_field, request, **kwargs):if db_field.name == "cars":kwargs["queryset"] = Car.objects.filter(owner=request.user)return super().formfield_for_manytomany(db_field, request, **kwargs).. method:: ModelAdmin.formfield_for_choice_field(db_field, request, **kwargs)Like the ``formfield_for_foreignkey`` and ``formfield_for_manytomany``methods, the ``formfield_for_choice_field`` method can be overridden tochange the default formfield for a field that has declared choices. Forexample, if the choices available to a superuser should be different thanthose available to regular staff, you could proceed as follows::class MyModelAdmin(admin.ModelAdmin):def formfield_for_choice_field(self, db_field, request, **kwargs):if db_field.name == "status":kwargs['choices'] = (('accepted', 'Accepted'),('denied', 'Denied'),)if request.user.is_superuser:kwargs['choices'] += (('ready', 'Ready for deployment'),)return super().formfield_for_choice_field(db_field, request, **kwargs).. admonition:: NoteAny ``choices`` attribute set on the formfield will be limited to theform field only. If the corresponding field on the model has choicesset, the choices provided to the form must be a valid subset of thosechoices, otherwise the form submission will fail witha :exc:`~django.core.exceptions.ValidationError` when the model itselfis validated before saving... method:: ModelAdmin.get_changelist(request, **kwargs)Returns the ``Changelist`` class to be used for listing. By default,``django.contrib.admin.views.main.ChangeList`` is used. By inheriting thisclass you can change the behavior of the listing... method:: ModelAdmin.get_changelist_form(request, **kwargs)Returns a :class:`~django.forms.ModelForm` class for use in the ``Formset``on the changelist page. To use a custom form, for example::from django import formsclass MyForm(forms.ModelForm):passclass MyModelAdmin(admin.ModelAdmin):def get_changelist_form(self, request, **kwargs):return MyForm.. admonition:: NoteIf you define the ``Meta.model`` attribute on a:class:`~django.forms.ModelForm`, you must also define the``Meta.fields`` attribute (or the ``Meta.exclude`` attribute). However,``ModelAdmin`` ignores this value, overriding it with the:attr:`ModelAdmin.list_editable` attribute. The easiest solution is toomit the ``Meta.model`` attribute, since ``ModelAdmin`` will provide thecorrect model to use... method:: ModelAdmin.get_changelist_formset(request, **kwargs)Returns a :ref:`ModelFormSet <model-formsets>` class for use on thechangelist page if :attr:`~ModelAdmin.list_editable` is used. To use acustom formset, for example::from django.forms import BaseModelFormSetclass MyAdminFormSet(BaseModelFormSet):passclass MyModelAdmin(admin.ModelAdmin):def get_changelist_formset(self, request, **kwargs):kwargs['formset'] = MyAdminFormSetreturn super().get_changelist_formset(request, **kwargs).. method:: ModelAdmin.lookup_allowed(lookup, value)The objects in the changelist page can be filtered with lookups from theURL's query string. This is how :attr:`list_filter` works, for example. Thelookups are similar to what's used in :meth:`.QuerySet.filter` (e.g.``[email protected]``). Since the lookups in the query stringcan be manipulated by the user, they must be sanitized to preventunauthorized data exposure.The ``lookup_allowed()`` method is given a lookup path from the query string(e.g. ``'user__email'``) and the corresponding value(e.g. ``'[email protected]'``), and returns a boolean indicating whetherfiltering the changelist's ``QuerySet`` using the parameters is permitted.If ``lookup_allowed()`` returns ``False``, ``DisallowedModelAdminLookup``(subclass of :exc:`~django.core.exceptions.SuspiciousOperation`) is raised.By default, ``lookup_allowed()`` allows access to a model's local fields,field paths used in :attr:`~ModelAdmin.list_filter` (but not paths from:meth:`~ModelAdmin.get_list_filter`), and lookups required for:attr:`~django.db.models.ForeignKey.limit_choices_to` to functioncorrectly in :attr:`~django.contrib.admin.ModelAdmin.raw_id_fields`.Override this method to customize the lookups permitted for your:class:`~django.contrib.admin.ModelAdmin` subclass... method:: ModelAdmin.has_view_permission(request, obj=None)Should return ``True`` if viewing ``obj`` is permitted, ``False`` otherwise.If obj is ``None``, should return ``True`` or ``False`` to indicate whetherviewing of objects of this type is permitted in general (e.g., ``False``will be interpreted as meaning that the current user is not permitted toview any object of this type).The default implementation returns ``True`` if the user has either the"change" or "view" permission... method:: ModelAdmin.has_add_permission(request)Should return ``True`` if adding an object is permitted, ``False``otherwise... method:: ModelAdmin.has_change_permission(request, obj=None)Should return ``True`` if editing ``obj`` is permitted, ``False``otherwise. If ``obj`` is ``None``, should return ``True`` or ``False`` toindicate whether editing of objects of this type is permitted in general(e.g., ``False`` will be interpreted as meaning that the current user isnot permitted to edit any object of this type)... method:: ModelAdmin.has_delete_permission(request, obj=None)Should return ``True`` if deleting ``obj`` is permitted, ``False``otherwise. If ``obj`` is ``None``, should return ``True`` or ``False`` toindicate whether deleting objects of this type is permitted in general(e.g., ``False`` will be interpreted as meaning that the current user isnot permitted to delete any object of this type)... method:: ModelAdmin.has_module_permission(request)Should return ``True`` if displaying the module on the admin index page andaccessing the module's index page is permitted, ``False`` otherwise.Uses :meth:`User.has_module_perms()<django.contrib.auth.models.User.has_module_perms>` by default. Overridingit does not restrict access to the view, add, change, or delete views,:meth:`~ModelAdmin.has_view_permission`,:meth:`~ModelAdmin.has_add_permission`,:meth:`~ModelAdmin.has_change_permission`, and:meth:`~ModelAdmin.has_delete_permission` should be used for that... method:: ModelAdmin.get_queryset(request)The ``get_queryset`` method on a ``ModelAdmin`` returns a:class:`~django.db.models.query.QuerySet` of all model instances thatcan be edited by the admin site. One use case for overriding this methodis to show objects owned by the logged-in user::class MyModelAdmin(admin.ModelAdmin):def get_queryset(self, request):qs = super().get_queryset(request)if request.user.is_superuser:return qsreturn qs.filter(author=request.user).. method:: ModelAdmin.message_user(request, message, level=messages.INFO, extra_tags='', fail_silently=False)Sends a message to the user using the :mod:`django.contrib.messages`backend. See the :ref:`custom ModelAdmin example <custom-admin-action>`.Keyword arguments allow you to change the message level, add extra CSStags, or fail silently if the ``contrib.messages`` framework is notinstalled. These keyword arguments match those for:func:`django.contrib.messages.add_message`, see that function'sdocumentation for more details. One difference is that the level may bepassed as a string label in addition to integer/constant... method:: ModelAdmin.get_paginator(request, queryset, per_page, orphans=0, allow_empty_first_page=True)Returns an instance of the paginator to use for this view. By default,instantiates an instance of :attr:`paginator`... method:: ModelAdmin.response_add(request, obj, post_url_continue=None)Determines the :class:`~django.http.HttpResponse` for the:meth:`add_view` stage.``response_add`` is called after the admin form is submitted andjust after the object and all the related instances havebeen created and saved. You can override it to change the default behaviorafter the object has been created... method:: ModelAdmin.response_change(request, obj)Determines the :class:`~django.http.HttpResponse` for the:meth:`change_view` stage.``response_change`` is called after the admin form is submitted andjust after the object and all the related instances havebeen saved. You can override it to change the defaultbehavior after the object has been changed... method:: ModelAdmin.response_delete(request, obj_display, obj_id)Determines the :class:`~django.http.HttpResponse` for the:meth:`delete_view` stage.``response_delete`` is called after the object has beendeleted. You can override it to change the defaultbehavior after the object has been deleted.``obj_display`` is a string with the name of the deletedobject.``obj_id`` is the serialized identifier used to retrieve the object to bedeleted... method:: ModelAdmin.get_formset_kwargs(request, obj, inline, prefix).. versionadded:: 4.0A hook for customizing the keyword arguments passed to the constructor of aformset. For example, to pass ``request`` to formset forms::class MyModelAdmin(admin.ModelAdmin):def get_formset_kwargs(self, request, obj, inline, prefix):return {**super().get_formset_kwargs(request, obj, inline, prefix),'form_kwargs': {'request': request},}You can also use it to set ``initial`` for formset forms... method:: ModelAdmin.get_changeform_initial_data(request)A hook for the initial data on admin change forms. By default, fields aregiven initial values from ``GET`` parameters. For instance,``?name=initial_value`` will set the ``name`` field's initial value to be``initial_value``.This method should return a dictionary in the form``{'fieldname': 'fieldval'}``::def get_changeform_initial_data(self, request):return {'name': 'custom_initial_value'}.. method:: ModelAdmin.get_deleted_objects(objs, request)A hook for customizing the deletion process of the :meth:`delete_view` andthe "delete selected" :doc:`action <actions>`.The ``objs`` argument is a homogeneous iterable of objects (a ``QuerySet``or a list of model instances) to be deleted, and ``request`` is the:class:`~django.http.HttpRequest`.This method must return a 4-tuple of``(deleted_objects, model_count, perms_needed, protected)``.``deleted_objects`` is a list of strings representing all the objects thatwill be deleted. If there are any related objects to be deleted, the listis nested and includes those related objects. The list is formatted in thetemplate using the :tfilter:`unordered_list` filter.``model_count`` is a dictionary mapping each model's:attr:`~django.db.models.Options.verbose_name_plural` to the number ofobjects that will be deleted.``perms_needed`` is a set of :attr:`~django.db.models.Options.verbose_name`\sof the models that the user doesn't have permission to delete.``protected`` is a list of strings representing of all the protectedrelated objects that can't be deleted. The list is displayed in thetemplate.Other methods~~~~~~~~~~~~~.. method:: ModelAdmin.add_view(request, form_url='', extra_context=None)Django view for the model instance addition page. See note below... method:: ModelAdmin.change_view(request, object_id, form_url='', extra_context=None)Django view for the model instance editing page. See note below... method:: ModelAdmin.changelist_view(request, extra_context=None)Django view for the model instances change list/actions page. See notebelow... method:: ModelAdmin.delete_view(request, object_id, extra_context=None)Django view for the model instance(s) deletion confirmation page. See notebelow... method:: ModelAdmin.history_view(request, object_id, extra_context=None)Django view for the page that shows the modification history for a givenmodel instance... versionchanged:: 4.1Pagination was added.Unlike the hook-type ``ModelAdmin`` methods detailed in the previous section,these five methods are in reality designed to be invoked as Django views fromthe admin application URL dispatching handler to render the pages that dealwith model instances CRUD operations. As a result, completely overriding thesemethods will significantly change the behavior of the admin application.One common reason for overriding these methods is to augment the context datathat is provided to the template that renders the view. In the followingexample, the change view is overridden so that the rendered template isprovided some extra mapping data that would not otherwise be available::class MyModelAdmin(admin.ModelAdmin):# A template for a very customized change view:change_form_template = 'admin/myapp/extras/openstreetmap_change_form.html'def get_osm_info(self):# ...passdef change_view(self, request, object_id, form_url='', extra_context=None):extra_context = extra_context or {}extra_context['osm_data'] = self.get_osm_info()return super().change_view(request, object_id, form_url, extra_context=extra_context,)These views return :class:`~django.template.response.TemplateResponse`instances which allow you to easily customize the response data beforerendering. For more details, see the :doc:`TemplateResponse documentation</ref/template-response>`... _modeladmin-asset-definitions:``ModelAdmin`` asset definitions--------------------------------There are times where you would like add a bit of CSS and/or JavaScript tothe add/change views. This can be accomplished by using a ``Media`` inner classon your ``ModelAdmin``::class ArticleAdmin(admin.ModelAdmin):class Media:css = {"all": ("my_styles.css",)}js = ("my_code.js",)The :doc:`staticfiles app </ref/contrib/staticfiles>` prepends:setting:`STATIC_URL` (or :setting:`MEDIA_URL` if :setting:`STATIC_URL` is``None``) to any asset paths. The same rules apply as :ref:`regular assetdefinitions on forms <form-asset-paths>`... _contrib-admin-jquery:jQuery~~~~~~Django admin JavaScript makes use of the `jQuery`_ library.To avoid conflicts with user-supplied scripts or libraries, Django's jQuery(version 3.6.0) is namespaced as ``django.jQuery``. If you want to use jQueryin your own admin JavaScript without including a second copy, you can use the``django.jQuery`` object on changelist and add/edit views. Also, your own adminforms or widgets depending on ``django.jQuery`` must specify``js=['admin/js/jquery.init.js', …]`` when :ref:`declaring form media assets<assets-as-a-static-definition>`... versionchanged:: 4.0jQuery was upgraded from 3.5.1 to 3.6.0.The :class:`ModelAdmin` class requires jQuery by default, so there is no needto add jQuery to your ``ModelAdmin``’s list of media resources unless you havea specific need. For example, if you require the jQuery library to be in theglobal namespace (for example when using third-party jQuery plugins) or if youneed a newer version of jQuery, you will have to include your own copy.Django provides both uncompressed and 'minified' versions of jQuery, as``jquery.js`` and ``jquery.min.js`` respectively.:class:`ModelAdmin` and :class:`InlineModelAdmin` have a ``media`` propertythat returns a list of ``Media`` objects which store paths to the JavaScriptfiles for the forms and/or formsets. If :setting:`DEBUG` is ``True`` it willreturn the uncompressed versions of the various JavaScript files, including``jquery.js``; if not, it will return the 'minified' versions... _jQuery: https://jquery.com.. _admin-custom-validation:Adding custom validation to the admin-------------------------------------You can also add custom validation of data in the admin. The automatic admininterface reuses :mod:`django.forms`, and the ``ModelAdmin`` class gives youthe ability to define your own form::class ArticleAdmin(admin.ModelAdmin):form = MyArticleAdminForm``MyArticleAdminForm`` can be defined anywhere as long as you import whereneeded. Now within your form you can add your own custom validation forany field::class MyArticleAdminForm(forms.ModelForm):def clean_name(self):# do something that validates your datareturn self.cleaned_data["name"]It is important you use a ``ModelForm`` here otherwise things can break. Seethe :doc:`forms </ref/forms/index>` documentation on :doc:`custom validation</ref/forms/validation>` and, more specifically, the:ref:`model form validation notes <overriding-modelform-clean-method>` for moreinformation... _admin-inlines:``InlineModelAdmin`` objects============================.. class:: InlineModelAdmin.. class:: TabularInline.. class:: StackedInlineThe admin interface has the ability to edit models on the same page as aparent model. These are called inlines. Suppose you have these two models::from django.db import modelsclass Author(models.Model):name = models.CharField(max_length=100)class Book(models.Model):author = models.ForeignKey(Author, on_delete=models.CASCADE)title = models.CharField(max_length=100)You can edit the books authored by an author on the author page. You addinlines to a model by specifying them in a ``ModelAdmin.inlines``::from django.contrib import adminclass BookInline(admin.TabularInline):model = Bookclass AuthorAdmin(admin.ModelAdmin):inlines = [BookInline,]Django provides two subclasses of ``InlineModelAdmin`` and they are:* :class:`~django.contrib.admin.TabularInline`* :class:`~django.contrib.admin.StackedInline`The difference between these two is merely the template used to renderthem.``InlineModelAdmin`` options-----------------------------``InlineModelAdmin`` shares many of the same features as ``ModelAdmin``, andadds some of its own (the shared features are actually defined in the``BaseModelAdmin`` superclass). The shared features are:- :attr:`~InlineModelAdmin.form`- :attr:`~ModelAdmin.fieldsets`- :attr:`~ModelAdmin.fields`- :attr:`~ModelAdmin.formfield_overrides`- :attr:`~ModelAdmin.exclude`- :attr:`~ModelAdmin.filter_horizontal`- :attr:`~ModelAdmin.filter_vertical`- :attr:`~ModelAdmin.ordering`- :attr:`~ModelAdmin.prepopulated_fields`- :meth:`~ModelAdmin.get_fieldsets`- :meth:`~ModelAdmin.get_queryset`- :attr:`~ModelAdmin.radio_fields`- :attr:`~ModelAdmin.readonly_fields`- :attr:`~InlineModelAdmin.raw_id_fields`- :meth:`~ModelAdmin.formfield_for_choice_field`- :meth:`~ModelAdmin.formfield_for_foreignkey`- :meth:`~ModelAdmin.formfield_for_manytomany`- :meth:`~ModelAdmin.has_module_permission`The ``InlineModelAdmin`` class adds or customizes:.. attribute:: InlineModelAdmin.modelThe model which the inline is using. This is required... attribute:: InlineModelAdmin.fk_nameThe name of the foreign key on the model. In most cases this will be dealtwith automatically, but ``fk_name`` must be specified explicitly if thereare more than one foreign key to the same parent model... attribute:: InlineModelAdmin.formsetThis defaults to :class:`~django.forms.models.BaseInlineFormSet`. Usingyour own formset can give you many possibilities of customization. Inlinesare built around :ref:`model formsets <model-formsets>`... attribute:: InlineModelAdmin.formThe value for ``form`` defaults to ``ModelForm``. This is what is passedthrough to :func:`~django.forms.models.inlineformset_factory` whencreating the formset for this inline... warning::When writing custom validation for ``InlineModelAdmin`` forms, be cautiousof writing validation that relies on features of the parent model. If theparent model fails to validate, it may be left in an inconsistent state asdescribed in the warning in :ref:`validation-on-modelform`... attribute:: InlineModelAdmin.classesA list or tuple containing extra CSS classes to apply to the fieldset thatis rendered for the inlines. Defaults to ``None``. As with classesconfigured in :attr:`~ModelAdmin.fieldsets`, inlines with a ``collapse``class will be initially collapsed and their header will have a small "show"link... attribute:: InlineModelAdmin.extraThis controls the number of extra forms the formset will display inaddition to the initial forms. Defaults to 3. See the:doc:`formsets documentation </topics/forms/formsets>` for moreinformation.For users with JavaScript-enabled browsers, an "Add another" link isprovided to enable any number of additional inlines to be added in additionto those provided as a result of the ``extra`` argument.The dynamic link will not appear if the number of currently displayed formsexceeds ``max_num``, or if the user does not have JavaScript enabled.:meth:`InlineModelAdmin.get_extra` also allows you to customize the numberof extra forms... attribute:: InlineModelAdmin.max_numThis controls the maximum number of forms to show in the inline. Thisdoesn't directly correlate to the number of objects, but can if the valueis small enough. See :ref:`model-formsets-max-num` for more information.:meth:`InlineModelAdmin.get_max_num` also allows you to customize themaximum number of extra forms... attribute:: InlineModelAdmin.min_numThis controls the minimum number of forms to show in the inline.See :func:`~django.forms.models.modelformset_factory` for more information.:meth:`InlineModelAdmin.get_min_num` also allows you to customize theminimum number of displayed forms... attribute:: InlineModelAdmin.raw_id_fieldsBy default, Django's admin uses a select-box interface (<select>) forfields that are ``ForeignKey``. Sometimes you don't want to incur theoverhead of having to select all the related instances to display in thedrop-down.``raw_id_fields`` is a list of fields you would like to change into an``Input`` widget for either a ``ForeignKey`` or ``ManyToManyField``::class BookInline(admin.TabularInline):model = Bookraw_id_fields = ("pages",).. attribute:: InlineModelAdmin.templateThe template used to render the inline on the page... attribute:: InlineModelAdmin.verbose_nameAn override to the :attr:`~django.db.models.Options.verbose_name` from themodel's inner ``Meta`` class... attribute:: InlineModelAdmin.verbose_name_pluralAn override to the :attr:`~django.db.models.Options.verbose_name_plural`from the model's inner ``Meta`` class. If this isn't given and the:attr:`.InlineModelAdmin.verbose_name` is defined, Django will use:attr:`.InlineModelAdmin.verbose_name` + ``'s'``... versionchanged:: 4.0The fallback to :attr:`.InlineModelAdmin.verbose_name` was added... attribute:: InlineModelAdmin.can_deleteSpecifies whether or not inline objects can be deleted in the inline.Defaults to ``True``... attribute:: InlineModelAdmin.show_change_linkSpecifies whether or not inline objects that can be changed in theadmin have a link to the change form. Defaults to ``False``... method:: InlineModelAdmin.get_formset(request, obj=None, **kwargs)Returns a :class:`~django.forms.models.BaseInlineFormSet` class for use inadmin add/change views. ``obj`` is the parent object being edited or``None`` when adding a new parent. See the example for:class:`ModelAdmin.get_formsets_with_inlines`... method:: InlineModelAdmin.get_extra(request, obj=None, **kwargs)Returns the number of extra inline forms to use. By default, returns the:attr:`InlineModelAdmin.extra` attribute.Override this method to programmatically determine the number of extrainline forms. For example, this may be based on the model instance(passed as the keyword argument ``obj``)::class BinaryTreeAdmin(admin.TabularInline):model = BinaryTreedef get_extra(self, request, obj=None, **kwargs):extra = 2if obj:return extra - obj.binarytree_set.count()return extra.. method:: InlineModelAdmin.get_max_num(request, obj=None, **kwargs)Returns the maximum number of extra inline forms to use. By default,returns the :attr:`InlineModelAdmin.max_num` attribute.Override this method to programmatically determine the maximum number ofinline forms. For example, this may be based on the model instance(passed as the keyword argument ``obj``)::class BinaryTreeAdmin(admin.TabularInline):model = BinaryTreedef get_max_num(self, request, obj=None, **kwargs):max_num = 10if obj and obj.parent:return max_num - 5return max_num.. method:: InlineModelAdmin.get_min_num(request, obj=None, **kwargs)Returns the minimum number of inline forms to use. By default,returns the :attr:`InlineModelAdmin.min_num` attribute.Override this method to programmatically determine the minimum number ofinline forms. For example, this may be based on the model instance(passed as the keyword argument ``obj``)... method:: InlineModelAdmin.has_add_permission(request, obj)Should return ``True`` if adding an inline object is permitted, ``False``otherwise. ``obj`` is the parent object being edited or ``None`` whenadding a new parent... method:: InlineModelAdmin.has_change_permission(request, obj=None)Should return ``True`` if editing an inline object is permitted, ``False``otherwise. ``obj`` is the parent object being edited... method:: InlineModelAdmin.has_delete_permission(request, obj=None)Should return ``True`` if deleting an inline object is permitted, ``False``otherwise. ``obj`` is the parent object being edited... note::The ``obj`` argument passed to ``InlineModelAdmin`` methods is the parentobject being edited or ``None`` when adding a new parent.Working with a model with two or more foreign keys to the same parent model---------------------------------------------------------------------------It is sometimes possible to have more than one foreign key to the same model.Take this model for instance::from django.db import modelsclass Friendship(models.Model):to_person = models.ForeignKey(Person, on_delete=models.CASCADE, related_name="friends")from_person = models.ForeignKey(Person, on_delete=models.CASCADE, related_name="from_friends")If you wanted to display an inline on the ``Person`` admin add/change pagesyou need to explicitly define the foreign key since it is unable to do soautomatically::from django.contrib import adminfrom myapp.models import Friendshipclass FriendshipInline(admin.TabularInline):model = Friendshipfk_name = "to_person"class PersonAdmin(admin.ModelAdmin):inlines = [FriendshipInline,]Working with many-to-many models--------------------------------By default, admin widgets for many-to-many relations will be displayedon whichever model contains the actual reference to the:class:`~django.db.models.ManyToManyField`. Depending on your ``ModelAdmin``definition, each many-to-many field in your model will be represented by astandard HTML ``<select multiple>``, a horizontal or vertical filter, or a``raw_id_fields`` widget. However, it is also possible to replace thesewidgets with inlines.Suppose we have the following models::from django.db import modelsclass Person(models.Model):name = models.CharField(max_length=128)class Group(models.Model):name = models.CharField(max_length=128)members = models.ManyToManyField(Person, related_name='groups')If you want to display many-to-many relations using an inline, you can doso by defining an ``InlineModelAdmin`` object for the relationship::from django.contrib import adminclass MembershipInline(admin.TabularInline):model = Group.members.throughclass PersonAdmin(admin.ModelAdmin):inlines = [MembershipInline,]class GroupAdmin(admin.ModelAdmin):inlines = [MembershipInline,]exclude = ('members',)There are two features worth noting in this example.Firstly - the ``MembershipInline`` class references ``Group.members.through``.The ``through`` attribute is a reference to the model that manages themany-to-many relation. This model is automatically created by Django when youdefine a many-to-many field.Secondly, the ``GroupAdmin`` must manually exclude the ``members`` field.Django displays an admin widget for a many-to-many field on the model thatdefines the relation (in this case, ``Group``). If you want to use an inlinemodel to represent the many-to-many relationship, you must tell Django's adminto *not* display this widget - otherwise you will end up with two widgets onyour admin page for managing the relation.Note that when using this technique the:data:`~django.db.models.signals.m2m_changed` signals aren't triggered. Thisis because as far as the admin is concerned, ``through`` is just a model withtwo foreign key fields rather than a many-to-many relation.In all other respects, the ``InlineModelAdmin`` is exactly the same as anyother. You can customize the appearance using any of the normal``ModelAdmin`` properties.Working with many-to-many intermediary models---------------------------------------------When you specify an intermediary model using the ``through`` argument to a:class:`~django.db.models.ManyToManyField`, the admin will not display awidget by default. This is because each instance of that intermediary modelrequires more information than could be displayed in a single widget, and thelayout required for multiple widgets will vary depending on the intermediatemodel.However, we still want to be able to edit that information inline. Fortunately,we can do this with inline admin models. Suppose we have the following models::from django.db import modelsclass Person(models.Model):name = models.CharField(max_length=128)class Group(models.Model):name = models.CharField(max_length=128)members = models.ManyToManyField(Person, through='Membership')class Membership(models.Model):person = models.ForeignKey(Person, on_delete=models.CASCADE)group = models.ForeignKey(Group, on_delete=models.CASCADE)date_joined = models.DateField()invite_reason = models.CharField(max_length=64)The first step in displaying this intermediate model in the admin is todefine an inline class for the ``Membership`` model::class MembershipInline(admin.TabularInline):model = Membershipextra = 1This example uses the default ``InlineModelAdmin`` values for the``Membership`` model, and limits the extra add forms to one. This could becustomized using any of the options available to ``InlineModelAdmin`` classes.Now create admin views for the ``Person`` and ``Group`` models::class PersonAdmin(admin.ModelAdmin):inlines = (MembershipInline,)class GroupAdmin(admin.ModelAdmin):inlines = (MembershipInline,)Finally, register your ``Person`` and ``Group`` models with the admin site::admin.site.register(Person, PersonAdmin)admin.site.register(Group, GroupAdmin)Now your admin site is set up to edit ``Membership`` objects inline fromeither the ``Person`` or the ``Group`` detail pages... _using-generic-relations-as-an-inline:Using generic relations as an inline------------------------------------It is possible to use an inline with generically related objects. Let's sayyou have the following models::from django.contrib.contenttypes.fields import GenericForeignKeyfrom django.db import modelsclass Image(models.Model):image = models.ImageField(upload_to="images")content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)object_id = models.PositiveIntegerField()content_object = GenericForeignKey("content_type", "object_id")class Product(models.Model):name = models.CharField(max_length=100)If you want to allow editing and creating an ``Image`` instance on the``Product``, add/change views you can use:class:`~django.contrib.contenttypes.admin.GenericTabularInline`or :class:`~django.contrib.contenttypes.admin.GenericStackedInline` (bothsubclasses of :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`)provided by :mod:`~django.contrib.contenttypes.admin`. They implement tabularand stacked visual layouts for the forms representing the inline objects,respectively, just like their non-generic counterparts. They behave just likeany other inline. In your ``admin.py`` for this example app::from django.contrib import adminfrom django.contrib.contenttypes.admin import GenericTabularInlinefrom myapp.models import Image, Productclass ImageInline(GenericTabularInline):model = Imageclass ProductAdmin(admin.ModelAdmin):inlines = [ImageInline,]admin.site.register(Product, ProductAdmin)See the :doc:`contenttypes documentation </ref/contrib/contenttypes>` for morespecific information... _admin-overriding-templates:Overriding admin templates==========================You can override many of the templates which the admin module uses to generatethe various pages of an admin site. You can even override a few of thesetemplates for a specific app, or a specific model.Set up your projects admin template directories-----------------------------------------------The admin template files are located in the ``contrib/admin/templates/admin``directory.In order to override one or more of them, first create an ``admin`` directoryin your project's ``templates`` directory. This can be any of the directoriesyou specified in the :setting:`DIRS <TEMPLATES-DIRS>` option of the``DjangoTemplates`` backend in the :setting:`TEMPLATES` setting. If you havecustomized the ``'loaders'`` option, be sure``'django.template.loaders.filesystem.Loader'`` appears before``'django.template.loaders.app_directories.Loader'`` so that your customtemplates will be found by the template loading system before those that areincluded with :mod:`django.contrib.admin`.Within this ``admin`` directory, create sub-directories named after your app.Within these app subdirectories create sub-directories named after your models.Note, that the admin app will lowercase the model name when looking for thedirectory, so make sure you name the directory in all lowercase if you aregoing to run your app on a case-sensitive filesystem.To override an admin template for a specific app, copy and edit the templatefrom the ``django/contrib/admin/templates/admin`` directory, and save it to oneof the directories you just created.For example, if we wanted to add a tool to the change list view for all themodels in an app named ``my_app``, we would copy``contrib/admin/templates/admin/change_list.html`` to the``templates/admin/my_app/`` directory of our project, and make any necessarychanges.If we wanted to add a tool to the change list view for only a specific modelnamed 'Page', we would copy that same file to the``templates/admin/my_app/page`` directory of our project.Overriding vs. replacing an admin template------------------------------------------Because of the modular design of the admin templates, it is usually neithernecessary nor advisable to replace an entire template. It is almost alwaysbetter to override only the section of the template which you need to change.To continue the example above, we want to add a new link next to the``History`` tool for the ``Page`` model. After looking at ``change_form.html``we determine that we only need to override the ``object-tools-items`` block.Therefore here is our new ``change_form.html`` :.. code-block:: html+django{% extends "admin/change_form.html" %}{% load i18n admin_urls %}{% block object-tools-items %}<li><a href="{% url opts|admin_urlname:'history' original.pk|admin_urlquote %}" class="historylink">{% translate "History" %}</a></li><li><a href="mylink/" class="historylink">My Link</a></li>{% if has_absolute_url %}<li><a href="{% url 'admin:view_on_site' content_type_id original.pk %}" class="viewsitelink">{% translate "View on site" %}</a></li>{% endif %}{% endblock %}And that's it! If we placed this file in the ``templates/admin/my_app``directory, our link would appear on the change form for all models withinmy_app... _admin-templates-overridden-per-app-or-model:Templates which may be overridden per app or model--------------------------------------------------Not every template in ``contrib/admin/templates/admin`` may be overridden perapp or per model. The following can:* ``actions.html``* ``app_index.html``* ``change_form.html``* ``change_form_object_tools.html``* ``change_list.html``* ``change_list_object_tools.html``* ``change_list_results.html``* ``date_hierarchy.html``* ``delete_confirmation.html``* ``object_history.html``* ``pagination.html``* ``popup_response.html``* ``prepopulated_fields_js.html``* ``search_form.html``* ``submit_line.html``For those templates that cannot be overridden in this way, you may stilloverride them for your entire project by placing the new version in your``templates/admin`` directory. This is particularly useful to create custom 404and 500 pages... note::Some of the admin templates, such as ``change_list_results.html`` are usedto render custom inclusion tags. These may be overridden, but in such casesyou are probably better off creating your own version of the tag inquestion and giving it a different name. That way you can use itselectively.Root and login templates------------------------If you wish to change the index, login or logout templates, you are better offcreating your own ``AdminSite`` instance (see below), and changing the:attr:`AdminSite.index_template` , :attr:`AdminSite.login_template` or:attr:`AdminSite.logout_template` properties... _admin-theming:Theming support===============The admin uses CSS variables to define colors. This allows changing colorswithout having to override many individual CSS rules. For example, if youpreferred purple instead of blue you could add a ``admin/base.html`` templateoverride to your project:.. code-block:: html+django{% extends 'admin/base.html' %}{% block extrastyle %}{{ block.super }}<style>:root {--primary: #9774d5;--secondary: #785cab;--link-fg: #7c449b;--link-selected-fg: #8f5bb2;}</style>{% endblock %}The list of CSS variables are defined at:file:`django/contrib/admin/static/admin/css/base.css`.Dark mode variables, respecting the `prefers-color-scheme`_ media query, aredefined at :file:`django/contrib/admin/static/admin/css/dark_mode.css`. This islinked to the document in ``{% block dark-mode-vars %}``... _prefers-color-scheme: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme.. versionchanged:: 4.1The dark mode variables were moved to a separate stylesheet and templateblock.``AdminSite`` objects=====================.. class:: AdminSite(name='admin')A Django administrative site is represented by an instance of``django.contrib.admin.sites.AdminSite``; by default, an instance ofthis class is created as ``django.contrib.admin.site`` and you canregister your models and ``ModelAdmin`` instances with it.If you want to customize the default admin site, you can :ref:`override it<overriding-default-admin-site>`.When constructing an instance of an ``AdminSite``, you can providea unique instance name using the ``name`` argument to the constructor. Thisinstance name is used to identify the instance, especially when:ref:`reversing admin URLs <admin-reverse-urls>`. If no instance name isprovided, a default instance name of ``admin`` will be used.See :ref:`customizing-adminsite` for an example of customizing the:class:`AdminSite` class.``AdminSite`` attributes------------------------Templates can override or extend base admin templates as described in:ref:`admin-overriding-templates`... attribute:: AdminSite.site_headerThe text to put at the top of each admin page, as an ``<h1>`` (a string).By default, this is "Django administration"... attribute:: AdminSite.site_titleThe text to put at the end of each admin page's ``<title>`` (a string). Bydefault, this is "Django site admin"... attribute:: AdminSite.site_urlThe URL for the "View site" link at the top of each admin page. By default,``site_url`` is ``/``. Set it to ``None`` to remove the link.For sites running on a subpath, the :meth:`each_context` method checks ifthe current request has ``request.META['SCRIPT_NAME']`` set and uses thatvalue if ``site_url`` isn't set to something other than ``/``... attribute:: AdminSite.index_titleThe text to put at the top of the admin index page (a string). By default,this is "Site administration"... attribute:: AdminSite.index_templatePath to a custom template that will be used by the admin site main indexview... attribute:: AdminSite.app_index_templatePath to a custom template that will be used by the admin site app index view... attribute:: AdminSite.empty_value_displayThe string to use for displaying empty values in the admin site's changelist. Defaults to a dash. The value can also be overridden on a per``ModelAdmin`` basis and on a custom field within a ``ModelAdmin`` bysetting an ``empty_value_display`` attribute on the field. See:attr:`ModelAdmin.empty_value_display` for examples... attribute:: AdminSite.enable_nav_sidebarA boolean value that determines whether to show the navigation sidebaron larger screens. By default, it is set to ``True``... attribute:: AdminSite.final_catch_all_viewA boolean value that determines whether to add a final catch-all view tothe admin that redirects unauthenticated users to the login page. Bydefault, it is set to ``True``... warning::Setting this to ``False`` is not recommended as the view protectsagainst a potential model enumeration privacy issue... attribute:: AdminSite.login_templatePath to a custom template that will be used by the admin site login view... attribute:: AdminSite.login_formSubclass of :class:`~django.contrib.auth.forms.AuthenticationForm` thatwill be used by the admin site login view... attribute:: AdminSite.logout_templatePath to a custom template that will be used by the admin site logout view... attribute:: AdminSite.password_change_templatePath to a custom template that will be used by the admin site passwordchange view... attribute:: AdminSite.password_change_done_templatePath to a custom template that will be used by the admin site passwordchange done view.``AdminSite`` methods---------------------.. method:: AdminSite.each_context(request)Returns a dictionary of variables to put in the template context forevery page in the admin site.Includes the following variables and values by default:* ``site_header``: :attr:`AdminSite.site_header`* ``site_title``: :attr:`AdminSite.site_title`* ``site_url``: :attr:`AdminSite.site_url`* ``has_permission``: :meth:`AdminSite.has_permission`* ``available_apps``: a list of applications from the :doc:`application registry</ref/applications/>` available for the current user. Each entry in thelist is a dict representing an application with the following keys:* ``app_label``: the application label* ``app_url``: the URL of the application index in the admin* ``has_module_perms``: a boolean indicating if displaying and accessing ofthe module's index page is permitted for the current user* ``models``: a list of the models available in the applicationEach model is a dict with the following keys:* ``model``: the model class* ``object_name``: class name of the model* ``name``: plural name of the model* ``perms``: a ``dict`` tracking ``add``, ``change``, ``delete``, and``view`` permissions* ``admin_url``: admin changelist URL for the model* ``add_url``: admin URL to add a new model instance.. versionchanged:: 4.0The ``model`` variable for each model was added... method:: AdminSite.get_app_list(request, app_label=None)Returns a list of applications from the :doc:`application registry</ref/applications/>` available for the current user. You can optionallypass an ``app_label`` argument to get details for a single app. Each entryin the list is a dictionary representing an application with the followingkeys:* ``app_label``: the application label* ``app_url``: the URL of the application index in the admin* ``has_module_perms``: a boolean indicating if displaying and accessing ofthe module's index page is permitted for the current user* ``models``: a list of the models available in the application* ``name``: name of the applicationEach model is a dictionary with the following keys:* ``model``: the model class* ``object_name``: class name of the model* ``name``: plural name of the model* ``perms``: a ``dict`` tracking ``add``, ``change``, ``delete``, and``view`` permissions* ``admin_url``: admin changelist URL for the model* ``add_url``: admin URL to add a new model instanceLists of applications and models are sorted alphabetically by their names.You can override this method to change the default order on the admin indexpage... versionchanged:: 4.1The ``app_label`` argument was added... method:: AdminSite.has_permission(request)Returns ``True`` if the user for the given ``HttpRequest`` has permissionto view at least one page in the admin site. Defaults to requiring both:attr:`User.is_active <django.contrib.auth.models.User.is_active>` and:attr:`User.is_staff <django.contrib.auth.models.User.is_staff>` to be``True``... method:: AdminSite.register(model_or_iterable, admin_class=None, **options)Registers the given model class (or iterable of classes) with the given``admin_class``. ``admin_class`` defaults to:class:`~django.contrib.admin.ModelAdmin` (the default admin options). Ifkeyword arguments are given -- e.g. ``list_display`` -- they'll be appliedas options to the admin class.Raises :class:`~django.core.exceptions.ImproperlyConfigured` if a model isabstract. and ``django.contrib.admin.sites.AlreadyRegistered`` if a modelis already registered... method:: AdminSite.unregister(model_or_iterable)Unregisters the given model class (or iterable of classes).Raises ``django.contrib.admin.sites.NotRegistered`` if a model isn'talready registered... _hooking-adminsite-to-urlconf:Hooking ``AdminSite`` instances into your URLconf-------------------------------------------------The last step in setting up the Django admin is to hook your ``AdminSite``instance into your URLconf. Do this by pointing a given URL at the``AdminSite.urls`` method. It is not necessary to use:func:`~django.urls.include()`.In this example, we register the default ``AdminSite`` instance``django.contrib.admin.site`` at the URL ``/admin/`` ::# urls.pyfrom django.contrib import adminfrom django.urls import pathurlpatterns = [path('admin/', admin.site.urls),].. _customizing-adminsite:Customizing the :class:`AdminSite` class----------------------------------------If you'd like to set up your own admin site with custom behavior, you're freeto subclass ``AdminSite`` and override or add anything you like. Then, createan instance of your ``AdminSite`` subclass (the same way you'd instantiate anyother Python class) and register your models and ``ModelAdmin`` subclasses withit instead of with the default site. Finally, update :file:`myproject/urls.py`to reference your :class:`AdminSite` subclass... code-block:: python:caption: ``myapp/admin.py``from django.contrib import adminfrom .models import MyModelclass MyAdminSite(admin.AdminSite):site_header = 'Monty Python administration'admin_site = MyAdminSite(name='myadmin')admin_site.register(MyModel).. code-block:: python:caption: ``myproject/urls.py``from django.urls import pathfrom myapp.admin import admin_siteurlpatterns = [path('myadmin/', admin_site.urls),]Note that you may not want autodiscovery of ``admin`` modules when using yourown ``AdminSite`` instance since you will likely be importing all the per-app``admin`` modules in your ``myproject.admin`` module. This means you need toput ``'django.contrib.admin.apps.SimpleAdminConfig'`` instead of``'django.contrib.admin'`` in your :setting:`INSTALLED_APPS` setting... _overriding-default-admin-site:Overriding the default admin site---------------------------------You can override the default ``django.contrib.admin.site`` by setting the:attr:`~.SimpleAdminConfig.default_site` attribute of a custom ``AppConfig``to the dotted import path of either a ``AdminSite`` subclass or a callable thatreturns a site instance... code-block:: python:caption: ``myproject/admin.py``from django.contrib import adminclass MyAdminSite(admin.AdminSite):..... code-block:: python:caption: ``myproject/apps.py``from django.contrib.admin.apps import AdminConfigclass MyAdminConfig(AdminConfig):default_site = 'myproject.admin.MyAdminSite'.. code-block:: python:caption: ``myproject/settings.py``INSTALLED_APPS = [...'myproject.apps.MyAdminConfig', # replaces 'django.contrib.admin'...].. _multiple-admin-sites:Multiple admin sites in the same URLconf----------------------------------------You can create multiple instances of the admin site on the same Django-poweredwebsite. Create multiple instances of ``AdminSite`` and place each one at adifferent URL.In this example, the URLs ``/basic-admin/`` and ``/advanced-admin/`` featureseparate versions of the admin site -- using the ``AdminSite`` instances``myproject.admin.basic_site`` and ``myproject.admin.advanced_site``,respectively::# urls.pyfrom django.urls import pathfrom myproject.admin import advanced_site, basic_siteurlpatterns = [path('basic-admin/', basic_site.urls),path('advanced-admin/', advanced_site.urls),]``AdminSite`` instances take a single argument to their constructor, theirname, which can be anything you like. This argument becomes the prefix to theURL names for the purposes of :ref:`reversing them<admin-reverse-urls>`. Thisis only necessary if you are using more than one ``AdminSite``.Adding views to admin sites---------------------------Just like :class:`ModelAdmin`, :class:`AdminSite` provides a:meth:`~django.contrib.admin.ModelAdmin.get_urls()` methodthat can be overridden to define additional views for the site. To adda new view to your admin site, extend the base:meth:`~django.contrib.admin.ModelAdmin.get_urls()` method to includea pattern for your new view... note::Any view you render that uses the admin templates, or extends the baseadmin template, should set ``request.current_app`` before rendering thetemplate. It should be set to either ``self.name`` if your view is on an``AdminSite`` or ``self.admin_site.name`` if your view is on a``ModelAdmin``... _auth_password_reset:Adding a password reset feature-------------------------------You can add a password reset feature to the admin site by adding a few lines toyour URLconf. Specifically, add these four patterns::from django.contrib.auth import views as auth_viewspath('admin/password_reset/',auth_views.PasswordResetView.as_view(),name='admin_password_reset',),path('admin/password_reset/done/',auth_views.PasswordResetDoneView.as_view(),name='password_reset_done',),path('reset/<uidb64>/<token>/',auth_views.PasswordResetConfirmView.as_view(),name='password_reset_confirm',),path('reset/done/',auth_views.PasswordResetCompleteView.as_view(),name='password_reset_complete',),(This assumes you've added the admin at ``admin/`` and requires that you putthe URLs starting with ``^admin/`` before the line that includes the admin appitself).The presence of the ``admin_password_reset`` named URL will cause a "forgottenyour password?" link to appear on the default admin log-in page under thepassword box.``LogEntry`` objects====================.. class:: models.LogEntryThe ``LogEntry`` class tracks additions, changes, and deletions of objectsdone through the admin interface... currentmodule:: django.contrib.admin.models``LogEntry`` attributes-----------------------.. attribute:: LogEntry.action_timeThe date and time of the action... attribute:: LogEntry.userThe user (an :setting:`AUTH_USER_MODEL` instance) who performed theaction... attribute:: LogEntry.content_typeThe :class:`~django.contrib.contenttypes.models.ContentType` of themodified object... attribute:: LogEntry.object_idThe textual representation of the modified object's primary key... attribute:: LogEntry.object_reprThe object`s ``repr()`` after the modification... attribute:: LogEntry.action_flagThe type of action logged: ``ADDITION``, ``CHANGE``, ``DELETION``.For example, to get a list of all additions done through the admin::from django.contrib.admin.models import ADDITION, LogEntryLogEntry.objects.filter(action_flag=ADDITION).. attribute:: LogEntry.change_messageThe detailed description of the modification. In the case of an edit, forexample, the message contains a list of the edited fields. The Django adminsite formats this content as a JSON structure, so that:meth:`get_change_message` can recompose a message translated in the currentuser language. Custom code might set this as a plain string though. You areadvised to use the :meth:`get_change_message` method to retrieve this valueinstead of accessing it directly.``LogEntry`` methods--------------------.. method:: LogEntry.get_edited_object()A shortcut that returns the referenced object... method:: LogEntry.get_change_message()Formats and translates :attr:`change_message` into the current userlanguage. Messages created before Django 1.10 will always be displayed inthe language in which they were logged... currentmodule:: django.contrib.admin.. _admin-reverse-urls:Reversing admin URLs====================When an :class:`AdminSite` is deployed, the views provided by that site areaccessible using Django's :ref:`URL reversing system <naming-url-patterns>`.The :class:`AdminSite` provides the following named URL patterns:========================= ======================== ==================================Page URL name Parameters========================= ======================== ==================================Index ``index``Login ``login``Logout ``logout``Password change ``password_change``Password change done ``password_change_done``i18n JavaScript ``jsi18n``Application index page ``app_list`` ``app_label``Redirect to object's page ``view_on_site`` ``content_type_id``, ``object_id``========================= ======================== ==================================Each :class:`ModelAdmin` instance provides an additional set of named URLs:====================== =============================================== =============Page URL name Parameters====================== =============================================== =============Changelist ``{{ app_label }}_{{ model_name }}_changelist``Add ``{{ app_label }}_{{ model_name }}_add``History ``{{ app_label }}_{{ model_name }}_history`` ``object_id``Delete ``{{ app_label }}_{{ model_name }}_delete`` ``object_id``Change ``{{ app_label }}_{{ model_name }}_change`` ``object_id``====================== =============================================== =============The ``UserAdmin`` provides a named URL:====================== =============================================== =============Page URL name Parameters====================== =============================================== =============Password change ``auth_user_password_change`` ``user_id``====================== =============================================== =============These named URLs are registered with the application namespace ``admin``, andwith an instance namespace corresponding to the name of the Site instance.So - if you wanted to get a reference to the Change view for a particular``Choice`` object (from the polls application) in the default admin, you wouldcall::>>> from django.urls import reverse>>> c = Choice.objects.get(...)>>> change_url = reverse('admin:polls_choice_change', args=(c.id,))This will find the first registered instance of the admin application(whatever the instance name), and resolve to the view for changing``poll.Choice`` instances in that instance.If you want to find a URL in a specific admin instance, provide the name ofthat instance as a ``current_app`` hint to the reverse call. For example,if you specifically wanted the admin view from the admin instance named``custom``, you would need to call::>>> change_url = reverse('admin:polls_choice_change', args=(c.id,), current_app='custom')For more details, see the documentation on :ref:`reversing namespaced URLs<topics-http-reversing-url-namespaces>`.To allow easier reversing of the admin urls in templates, Django provides an``admin_urlname`` filter which takes an action as argument:.. code-block:: html+django{% load admin_urls %}<a href="{% url opts|admin_urlname:'add' %}">Add user</a><a href="{% url opts|admin_urlname:'delete' user.pk %}">Delete this user</a>The action in the examples above match the last part of the URL names for:class:`ModelAdmin` instances described above. The ``opts`` variable can be anyobject which has an ``app_label`` and ``model_name`` attributes and is usuallysupplied by the admin views for the current model.The ``display`` decorator=========================.. function:: display(*, boolean=None, ordering=None, description=None, empty_value=None)This decorator can be used for setting specific attributes on customdisplay functions that can be used with:attr:`~django.contrib.admin.ModelAdmin.list_display` or:attr:`~django.contrib.admin.ModelAdmin.readonly_fields`::@admin.display(boolean=True,ordering='-publish_date',description='Is Published?',)def is_published(self, obj):return obj.publish_date is not NoneThis is equivalent to setting some attributes (with the original, longernames) on the function directly::def is_published(self, obj):return obj.publish_date is not Noneis_published.boolean = Trueis_published.admin_order_field = '-publish_date'is_published.short_description = 'Is Published?'Also note that the ``empty_value`` decorator parameter maps to the``empty_value_display`` attribute assigned directly to the function. Itcannot be used in conjunction with ``boolean`` -- they are mutuallyexclusive.Use of this decorator is not compulsory to make a display function, but itcan be useful to use it without arguments as a marker in your source toidentify the purpose of the function::@admin.displaydef published_year(self, obj):return obj.publish_date.yearIn this case it will add no attributes to the function... currentmodule:: django.contrib.admin.views.decoratorsThe ``staff_member_required`` decorator=======================================.. function:: staff_member_required(redirect_field_name='next', login_url='admin:login')This decorator is used on the admin views that require authorization. Aview decorated with this function will have the following behavior:* If the user is logged in, is a staff member (``User.is_staff=True``), andis active (``User.is_active=True``), execute the view normally.* Otherwise, the request will be redirected to the URL specified by the``login_url`` parameter, with the originally requested path in a querystring variable specified by ``redirect_field_name``. For example:``/admin/login/?next=/admin/polls/question/3/``.Example usage::from django.contrib.admin.views.decorators import staff_member_required@staff_member_requireddef my_view(request):...