==========================The contenttypes framework==========================.. module:: django.contrib.contenttypes:synopsis: Provides generic interface to installed models.Django includes a :mod:`~django.contrib.contenttypes` application that cantrack all of the models installed in your Django-powered project, providing ahigh-level, generic interface for working with your models.Overview========At the heart of the contenttypes application is the:class:`~django.contrib.contenttypes.models.ContentType` model, which lives at``django.contrib.contenttypes.models.ContentType``. Instances of:class:`~django.contrib.contenttypes.models.ContentType` represent and storeinformation about the models installed in your project, and new instances of:class:`~django.contrib.contenttypes.models.ContentType` are automaticallycreated whenever new models are installed.Instances of :class:`~django.contrib.contenttypes.models.ContentType` havemethods for returning the model classes they represent and for querying objectsfrom those models. :class:`~django.contrib.contenttypes.models.ContentType`also has a :ref:`custom manager <custom-managers>` that adds methods forworking with :class:`~django.contrib.contenttypes.models.ContentType` and forobtaining instances of :class:`~django.contrib.contenttypes.models.ContentType`for a particular model.Relations between your models and:class:`~django.contrib.contenttypes.models.ContentType` can also be used toenable "generic" relationships between an instance of one of yourmodels and instances of any model you have installed.Installing the contenttypes framework=====================================The contenttypes framework is included in the default:setting:`INSTALLED_APPS` list created by ``django-admin startproject``,but if you've removed it or if you manually set up your:setting:`INSTALLED_APPS` list, you can enable it by adding``'django.contrib.contenttypes'`` to your :setting:`INSTALLED_APPS` setting.It's generally a good idea to have the contenttypes frameworkinstalled; several of Django's other bundled applications require it:* The admin application uses it to log the history of each objectadded or changed through the admin interface.* Django's :mod:`authentication framework <django.contrib.auth>` uses itto tie user permissions to specific models... currentmodule:: django.contrib.contenttypes.modelsThe ``ContentType`` model=========================.. class:: ContentTypeEach instance of :class:`~django.contrib.contenttypes.models.ContentType`has two fields which, taken together, uniquely describe an installedmodel:.. attribute:: app_labelThe name of the application the model is part of. This is taken fromthe :attr:`app_label` attribute of the model, and includes only the*last* part of the application's Python import path;``django.contrib.contenttypes``, for example, becomes an:attr:`app_label` of ``contenttypes``... attribute:: modelThe name of the model class.Additionally, the following property is available:.. attribute:: nameThe human-readable name of the content type. This is taken from the:attr:`verbose_name <django.db.models.Field.verbose_name>`attribute of the model.Let's look at an example to see how this works. If you already havethe :mod:`~django.contrib.contenttypes` application installed, and then add:mod:`the sites application <django.contrib.sites>` to your:setting:`INSTALLED_APPS` setting and run ``manage.py migrate`` to install it,the model :class:`django.contrib.sites.models.Site` will be installed intoyour database. Along with it a new instance of:class:`~django.contrib.contenttypes.models.ContentType` will becreated with the following values:* :attr:`~django.contrib.contenttypes.models.ContentType.app_label`will be set to ``'sites'`` (the last part of the Pythonpath ``django.contrib.sites``).* :attr:`~django.contrib.contenttypes.models.ContentType.model`will be set to ``'site'``.Methods on ``ContentType`` instances====================================Each :class:`~django.contrib.contenttypes.models.ContentType` instance hasmethods that allow you to get from a:class:`~django.contrib.contenttypes.models.ContentType` instance to themodel it represents, or to retrieve objects from that model:.. method:: ContentType.get_object_for_this_type(**kwargs)Takes a set of valid :ref:`lookup arguments <field-lookups-intro>` for themodel the :class:`~django.contrib.contenttypes.models.ContentType`represents, and does:meth:`a get() lookup <django.db.models.query.QuerySet.get>`on that model, returning the corresponding object... method:: ContentType.model_class()Returns the model class represented by this:class:`~django.contrib.contenttypes.models.ContentType` instance.For example, we could look up the:class:`~django.contrib.contenttypes.models.ContentType` for the:class:`~django.contrib.auth.models.User` model::>>> from django.contrib.contenttypes.models import ContentType>>> user_type = ContentType.objects.get(app_label='auth', model='user')>>> user_type<ContentType: user>And then use it to query for a particular:class:`~django.contrib.auth.models.User`, or to get accessto the ``User`` model class::>>> user_type.model_class()<class 'django.contrib.auth.models.User'>>>> user_type.get_object_for_this_type(username='Guido')<User: Guido>Together,:meth:`~django.contrib.contenttypes.models.ContentType.get_object_for_this_type`and :meth:`~django.contrib.contenttypes.models.ContentType.model_class` enabletwo extremely important use cases:1. Using these methods, you can write high-level generic code thatperforms queries on any installed model -- instead of importing andusing a single specific model class, you can pass an ``app_label`` and``model`` into a:class:`~django.contrib.contenttypes.models.ContentType` lookup atruntime, and then work with the model class or retrieve objects from it.2. You can relate another model to:class:`~django.contrib.contenttypes.models.ContentType` as a way oftying instances of it to particular model classes, and use these methodsto get access to those model classes.Several of Django's bundled applications make use of the latter technique.For example,:class:`the permissions system <django.contrib.auth.models.Permission>` inDjango's authentication framework uses a:class:`~django.contrib.auth.models.Permission` model with a foreignkey to :class:`~django.contrib.contenttypes.models.ContentType`; this lets:class:`~django.contrib.auth.models.Permission` represent concepts like"can add blog entry" or "can delete news story".The ``ContentTypeManager``--------------------------.. class:: ContentTypeManager:class:`~django.contrib.contenttypes.models.ContentType` also has a custommanager, :class:`~django.contrib.contenttypes.models.ContentTypeManager`,which adds the following methods:.. method:: clear_cache()Clears an internal cache used by:class:`~django.contrib.contenttypes.models.ContentType` to keep trackof models for which it has created:class:`~django.contrib.contenttypes.models.ContentType` instances. Youprobably won't ever need to call this method yourself; Django will callit automatically when it's needed... method:: get_for_id(id)Lookup a :class:`~django.contrib.contenttypes.models.ContentType` by ID.Since this method uses the same shared cache as:meth:`~django.contrib.contenttypes.models.ContentTypeManager.get_for_model`,it's preferred to use this method over the usual``ContentType.objects.get(pk=id)``.. method:: get_for_model(model, for_concrete_model=True)Takes either a model class or an instance of a model, and returns the:class:`~django.contrib.contenttypes.models.ContentType` instancerepresenting that model. ``for_concrete_model=False`` allows fetchingthe :class:`~django.contrib.contenttypes.models.ContentType` of a proxymodel... method:: get_for_models(*models, for_concrete_models=True)Takes a variadic number of model classes, and returns a dictionarymapping the model classes to the:class:`~django.contrib.contenttypes.models.ContentType` instancesrepresenting them. ``for_concrete_models=False`` allows fetching the:class:`~django.contrib.contenttypes.models.ContentType` of proxymodels... method:: get_by_natural_key(app_label, model)Returns the :class:`~django.contrib.contenttypes.models.ContentType`instance uniquely identified by the given application label and modelname. The primary purpose of this method is to allow:class:`~django.contrib.contenttypes.models.ContentType` objects to bereferenced via a :ref:`natural key<topics-serialization-natural-keys>`during deserialization.The :meth:`~ContentTypeManager.get_for_model()` method is especiallyuseful when you know you need to work with a:class:`ContentType <django.contrib.contenttypes.models.ContentType>` but don'twant to go to the trouble of obtaining the model's metadata to perform a manuallookup::>>> from django.contrib.auth.models import User>>> ContentType.objects.get_for_model(User)<ContentType: user>.. module:: django.contrib.contenttypes.fields.. _generic-relations:Generic relations=================Adding a foreign key from one of your own models to:class:`~django.contrib.contenttypes.models.ContentType` allows your model toeffectively tie itself to another model class, as in the example of the:class:`~django.contrib.auth.models.Permission` model above. But it's possibleto go one step further and use:class:`~django.contrib.contenttypes.models.ContentType` to enable trulygeneric (sometimes called "polymorphic") relationships between models.For example, it could be used for a tagging system like so::from django.contrib.contenttypes.fields import GenericForeignKeyfrom django.contrib.contenttypes.models import ContentTypefrom django.db import modelsclass TaggedItem(models.Model):tag = models.SlugField()content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)object_id = models.PositiveIntegerField()content_object = GenericForeignKey('content_type', 'object_id')def __str__(self):return self.tagclass Meta:indexes = [models.Index(fields=["content_type", "object_id"]),]A normal :class:`~django.db.models.ForeignKey` can only "pointto" one other model, which means that if the ``TaggedItem`` model used a:class:`~django.db.models.ForeignKey` it would have tochoose one and only one model to store tags for. The contenttypesapplication provides a special field type (``GenericForeignKey``) whichworks around this and allows the relationship to be with anymodel:.. class:: GenericForeignKeyThere are three parts to setting up a:class:`~django.contrib.contenttypes.fields.GenericForeignKey`:1. Give your model a :class:`~django.db.models.ForeignKey`to :class:`~django.contrib.contenttypes.models.ContentType`. The usualname for this field is "content_type".2. Give your model a field that can store primary key values from themodels you'll be relating to. For most models, this means a:class:`~django.db.models.PositiveIntegerField`. The usual namefor this field is "object_id".3. Give your model a:class:`~django.contrib.contenttypes.fields.GenericForeignKey`, andpass it the names of the two fields described above. If these fieldsare named "content_type" and "object_id", you can omit this -- thoseare the default field names:class:`~django.contrib.contenttypes.fields.GenericForeignKey` willlook for.Unlike for the :class:`~django.db.models.ForeignKey`, a database index is*not* automatically created on the:class:`~django.contrib.contenttypes.fields.GenericForeignKey`, so it'srecommended that you use:attr:`Meta.indexes <django.db.models.Options.indexes>` to add your ownmultiple column index. This behavior :ticket:`may change <23435>` in thefuture... attribute:: GenericForeignKey.for_concrete_modelIf ``False``, the field will be able to reference proxy models. Defaultis ``True``. This mirrors the ``for_concrete_model`` argument to:meth:`~django.contrib.contenttypes.models.ContentTypeManager.get_for_model`... admonition:: Primary key type compatibilityThe "object_id" field doesn't have to be the same type as theprimary key fields on the related models, but their primary key valuesmust be coercible to the same type as the "object_id" field by its:meth:`~django.db.models.Field.get_db_prep_value` method.For example, if you want to allow generic relations to models with either:class:`~django.db.models.IntegerField` or:class:`~django.db.models.CharField` primary key fields, youcan use :class:`~django.db.models.CharField` for the"object_id" field on your model since integers can be coerced tostrings by :meth:`~django.db.models.Field.get_db_prep_value`.For maximum flexibility you can use a:class:`~django.db.models.TextField` which doesn't have amaximum length defined, however this may incur significant performancepenalties depending on your database backend.There is no one-size-fits-all solution for which field type is best. Youshould evaluate the models you expect to be pointing to and determinewhich solution will be most effective for your use case... admonition:: Serializing references to ``ContentType`` objectsIf you're serializing data (for example, when generating:class:`~django.test.TransactionTestCase.fixtures`) from a model that implementsgeneric relations, you should probably be using a natural key to uniquelyidentify related :class:`~django.contrib.contenttypes.models.ContentType`objects. See :ref:`natural keys<topics-serialization-natural-keys>` and:option:`dumpdata --natural-foreign` for more information.This will enable an API similar to the one used for a normal:class:`~django.db.models.ForeignKey`;each ``TaggedItem`` will have a ``content_object`` field that returns theobject it's related to, and you can also assign to that field or use it whencreating a ``TaggedItem``::>>> from django.contrib.auth.models import User>>> guido = User.objects.get(username='Guido')>>> t = TaggedItem(content_object=guido, tag='bdfl')>>> t.save()>>> t.content_object<User: Guido>If the related object is deleted, the ``content_type`` and ``object_id`` fieldsremain set to their original values and the ``GenericForeignKey`` returns``None``::>>> guido.delete()>>> t.content_object # returns NoneDue to the way :class:`~django.contrib.contenttypes.fields.GenericForeignKey`is implemented, you cannot use such fields directly with filters (``filter()``and ``exclude()``, for example) via the database API. Because a:class:`~django.contrib.contenttypes.fields.GenericForeignKey` isn't anormal field object, these examples will *not* work::# This will fail>>> TaggedItem.objects.filter(content_object=guido)# This will also fail>>> TaggedItem.objects.get(content_object=guido)Likewise, :class:`~django.contrib.contenttypes.fields.GenericForeignKey`\sdoes not appear in :class:`~django.forms.ModelForm`\s.Reverse generic relations-------------------------.. class:: GenericRelation.. attribute:: related_query_nameThe relation on the related object back to this object doesn't exist bydefault. Setting ``related_query_name`` creates a relation from therelated object back to this one. This allows querying and filteringfrom the related object.If you know which models you'll be using most often, you can also adda "reverse" generic relationship to enable an additional API. For example::from django.contrib.contenttypes.fields import GenericRelationfrom django.db import modelsclass Bookmark(models.Model):url = models.URLField()tags = GenericRelation(TaggedItem)``Bookmark`` instances will each have a ``tags`` attribute, which canbe used to retrieve their associated ``TaggedItems``::>>> b = Bookmark(url='https://www.djangoproject.com/')>>> b.save()>>> t1 = TaggedItem(content_object=b, tag='django')>>> t1.save()>>> t2 = TaggedItem(content_object=b, tag='python')>>> t2.save()>>> b.tags.all()<QuerySet [<TaggedItem: django>, <TaggedItem: python>]>You can also use ``add()``, ``create()``, or ``set()`` to createrelationships::>>> t3 = TaggedItem(tag='Web development')>>> b.tags.add(t3, bulk=False)>>> b.tags.create(tag='Web framework')<TaggedItem: Web framework>>>> b.tags.all()<QuerySet [<TaggedItem: django>, <TaggedItem: python>, <TaggedItem: Web development>, <TaggedItem: Web framework>]>>>> b.tags.set([t1, t3])>>> b.tags.all()<QuerySet [<TaggedItem: django>, <TaggedItem: Web development>]>The ``remove()`` call will bulk delete the specified model objects::>>> b.tags.remove(t3)>>> b.tags.all()<QuerySet [<TaggedItem: django>]>>>> TaggedItem.objects.all()<QuerySet [<TaggedItem: django>]>The ``clear()`` method can be used to bulk delete all related objects for aninstance::>>> b.tags.clear()>>> b.tags.all()<QuerySet []>>>> TaggedItem.objects.all()<QuerySet []>Defining :class:`~django.contrib.contenttypes.fields.GenericRelation` with``related_query_name`` set allows querying from the related object::tags = GenericRelation(TaggedItem, related_query_name='bookmark')This enables filtering, ordering, and other query operations on ``Bookmark``from ``TaggedItem``::>>> # Get all tags belonging to bookmarks containing `django` in the url>>> TaggedItem.objects.filter(bookmark__url__contains='django')<QuerySet [<TaggedItem: django>, <TaggedItem: python>]>If you don't add the ``related_query_name``, you can do the same types oflookups manually::>>> bookmarks = Bookmark.objects.filter(url__contains='django')>>> bookmark_type = ContentType.objects.get_for_model(Bookmark)>>> TaggedItem.objects.filter(content_type__pk=bookmark_type.id, object_id__in=bookmarks)<QuerySet [<TaggedItem: django>, <TaggedItem: python>]>Just as :class:`~django.contrib.contenttypes.fields.GenericForeignKey`accepts the names of the content-type and object-ID fields asarguments, so too does:class:`~django.contrib.contenttypes.fields.GenericRelation`;if the model which has the generic foreign key is using non-default namesfor those fields, you must pass the names of the fields when setting up a:class:`.GenericRelation` to it. For example, if the ``TaggedItem`` modelreferred to above used fields named ``content_type_fk`` and``object_primary_key`` to create its generic foreign key, then a:class:`.GenericRelation` back to it would need to be defined like so::tags = GenericRelation(TaggedItem,content_type_field='content_type_fk',object_id_field='object_primary_key',)Note also, that if you delete an object that has a:class:`~django.contrib.contenttypes.fields.GenericRelation`, any objectswhich have a :class:`~django.contrib.contenttypes.fields.GenericForeignKey`pointing at it will be deleted as well. In the example above, this means thatif a ``Bookmark`` object were deleted, any ``TaggedItem`` objects pointing atit would be deleted at the same time.Unlike :class:`~django.db.models.ForeignKey`,:class:`~django.contrib.contenttypes.fields.GenericForeignKey` does not acceptan :attr:`~django.db.models.ForeignKey.on_delete` argument to customize thisbehavior; if desired, you can avoid the cascade-deletion by not using:class:`~django.contrib.contenttypes.fields.GenericRelation`, and alternatebehavior can be provided via the :data:`~django.db.models.signals.pre_delete`signal.Generic relations and aggregation---------------------------------:doc:`Django's database aggregation API </topics/db/aggregation>` works with a:class:`~django.contrib.contenttypes.fields.GenericRelation`. For example, youcan find out how many tags all the bookmarks have::>>> Bookmark.objects.aggregate(Count('tags')){'tags__count': 3}.. module:: django.contrib.contenttypes.formsGeneric relation in forms-------------------------The :mod:`django.contrib.contenttypes.forms` module provides:* :class:`BaseGenericInlineFormSet`* A formset factory, :func:`generic_inlineformset_factory`, for use with:class:`~django.contrib.contenttypes.fields.GenericForeignKey`... class:: BaseGenericInlineFormSet.. function:: generic_inlineformset_factory(model, form=ModelForm, formset=BaseGenericInlineFormSet, ct_field="content_type", fk_field="object_id", fields=None, exclude=None, extra=3, can_order=False, can_delete=True, max_num=None, formfield_callback=None, validate_max=False, for_concrete_model=True, min_num=None, validate_min=False, absolute_max=None, can_delete_extra=True)Returns a ``GenericInlineFormSet`` using:func:`~django.forms.models.modelformset_factory`.You must provide ``ct_field`` and ``fk_field`` if they are different fromthe defaults, ``content_type`` and ``object_id`` respectively. Otherparameters are similar to those documented in:func:`~django.forms.models.modelformset_factory` and:func:`~django.forms.models.inlineformset_factory`.The ``for_concrete_model`` argument corresponds to the:class:`~django.contrib.contenttypes.fields.GenericForeignKey.for_concrete_model`argument on ``GenericForeignKey``... module:: django.contrib.contenttypes.adminGeneric relations in admin--------------------------The :mod:`django.contrib.contenttypes.admin` module provides:class:`~django.contrib.contenttypes.admin.GenericTabularInline` and:class:`~django.contrib.contenttypes.admin.GenericStackedInline` (subclasses of:class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`)These classes and functions enable the use of generic relations in formsand the admin. See the :doc:`model formset </topics/forms/modelforms>` and:ref:`admin <using-generic-relations-as-an-inline>` documentation for moreinformation... class:: GenericInlineModelAdminThe :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`class inherits all properties from an:class:`~django.contrib.admin.InlineModelAdmin` class. However,it adds a couple of its own for working with the generic relation:.. attribute:: ct_fieldThe name of the:class:`~django.contrib.contenttypes.models.ContentType` foreign keyfield on the model. Defaults to ``content_type``... attribute:: ct_fk_fieldThe name of the integer field that represents the ID of the relatedobject. Defaults to ``object_id``... class:: GenericTabularInline.. class:: GenericStackedInlineSubclasses of :class:`GenericInlineModelAdmin` with stacked and tabularlayouts, respectively.