contenttypes.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. ==========================
  2. The contenttypes framework
  3. ==========================
  4. .. module:: django.contrib.contenttypes
  5. :synopsis: Provides generic interface to installed models.
  6. Django includes a :mod:`~django.contrib.contenttypes` application that can
  7. track all of the models installed in your Django-powered project, providing a
  8. high-level, generic interface for working with your models.
  9. Overview
  10. ========
  11. At the heart of the contenttypes application is the
  12. :class:`~django.contrib.contenttypes.models.ContentType` model, which lives at
  13. ``django.contrib.contenttypes.models.ContentType``. Instances of
  14. :class:`~django.contrib.contenttypes.models.ContentType` represent and store
  15. information about the models installed in your project, and new instances of
  16. :class:`~django.contrib.contenttypes.models.ContentType` are automatically
  17. created whenever new models are installed.
  18. Instances of :class:`~django.contrib.contenttypes.models.ContentType` have
  19. methods for returning the model classes they represent and for querying objects
  20. from those models. :class:`~django.contrib.contenttypes.models.ContentType`
  21. also has a :ref:`custom manager <custom-managers>` that adds methods for
  22. working with :class:`~django.contrib.contenttypes.models.ContentType` and for
  23. obtaining instances of :class:`~django.contrib.contenttypes.models.ContentType`
  24. for a particular model.
  25. Relations between your models and
  26. :class:`~django.contrib.contenttypes.models.ContentType` can also be used to
  27. enable "generic" relationships between an instance of one of your
  28. models and instances of any model you have installed.
  29. Installing the contenttypes framework
  30. =====================================
  31. The contenttypes framework is included in the default
  32. :setting:`INSTALLED_APPS` list created by ``django-admin startproject``,
  33. but if you've removed it or if you manually set up your
  34. :setting:`INSTALLED_APPS` list, you can enable it by adding
  35. ``'django.contrib.contenttypes'`` to your :setting:`INSTALLED_APPS` setting.
  36. It's generally a good idea to have the contenttypes framework
  37. installed; several of Django's other bundled applications require it:
  38. * The admin application uses it to log the history of each object
  39. added or changed through the admin interface.
  40. * Django's :mod:`authentication framework <django.contrib.auth>` uses it
  41. to tie user permissions to specific models.
  42. .. currentmodule:: django.contrib.contenttypes.models
  43. The ``ContentType`` model
  44. =========================
  45. .. class:: ContentType
  46. Each instance of :class:`~django.contrib.contenttypes.models.ContentType`
  47. has two fields which, taken together, uniquely describe an installed
  48. model:
  49. .. attribute:: app_label
  50. The name of the application the model is part of. This is taken from
  51. the :attr:`app_label` attribute of the model, and includes only the
  52. *last* part of the application's Python import path;
  53. ``django.contrib.contenttypes``, for example, becomes an
  54. :attr:`app_label` of ``contenttypes``.
  55. .. attribute:: model
  56. The name of the model class.
  57. Additionally, the following property is available:
  58. .. attribute:: name
  59. The human-readable name of the content type. This is taken from the
  60. :attr:`verbose_name <django.db.models.Field.verbose_name>`
  61. attribute of the model.
  62. Let's look at an example to see how this works. If you already have
  63. the :mod:`~django.contrib.contenttypes` application installed, and then add
  64. :mod:`the sites application <django.contrib.sites>` to your
  65. :setting:`INSTALLED_APPS` setting and run ``manage.py migrate`` to install it,
  66. the model :class:`django.contrib.sites.models.Site` will be installed into
  67. your database. Along with it a new instance of
  68. :class:`~django.contrib.contenttypes.models.ContentType` will be
  69. created with the following values:
  70. * :attr:`~django.contrib.contenttypes.models.ContentType.app_label`
  71. will be set to ``'sites'`` (the last part of the Python
  72. path ``django.contrib.sites``).
  73. * :attr:`~django.contrib.contenttypes.models.ContentType.model`
  74. will be set to ``'site'``.
  75. Methods on ``ContentType`` instances
  76. ====================================
  77. Each :class:`~django.contrib.contenttypes.models.ContentType` instance has
  78. methods that allow you to get from a
  79. :class:`~django.contrib.contenttypes.models.ContentType` instance to the
  80. model it represents, or to retrieve objects from that model:
  81. .. method:: ContentType.get_object_for_this_type(**kwargs)
  82. Takes a set of valid :ref:`lookup arguments <field-lookups-intro>` for the
  83. model the :class:`~django.contrib.contenttypes.models.ContentType`
  84. represents, and does
  85. :meth:`a get() lookup <django.db.models.query.QuerySet.get>`
  86. on that model, returning the corresponding object.
  87. .. method:: ContentType.model_class()
  88. Returns the model class represented by this
  89. :class:`~django.contrib.contenttypes.models.ContentType` instance.
  90. For example, we could look up the
  91. :class:`~django.contrib.contenttypes.models.ContentType` for the
  92. :class:`~django.contrib.auth.models.User` model:
  93. .. code-block:: pycon
  94. >>> from django.contrib.contenttypes.models import ContentType
  95. >>> user_type = ContentType.objects.get(app_label="auth", model="user")
  96. >>> user_type
  97. <ContentType: user>
  98. And then use it to query for a particular
  99. :class:`~django.contrib.auth.models.User`, or to get access
  100. to the ``User`` model class:
  101. .. code-block:: pycon
  102. >>> user_type.model_class()
  103. <class 'django.contrib.auth.models.User'>
  104. >>> user_type.get_object_for_this_type(username="Guido")
  105. <User: Guido>
  106. Together,
  107. :meth:`~django.contrib.contenttypes.models.ContentType.get_object_for_this_type`
  108. and :meth:`~django.contrib.contenttypes.models.ContentType.model_class` enable
  109. two extremely important use cases:
  110. 1. Using these methods, you can write high-level generic code that
  111. performs queries on any installed model -- instead of importing and
  112. using a single specific model class, you can pass an ``app_label`` and
  113. ``model`` into a
  114. :class:`~django.contrib.contenttypes.models.ContentType` lookup at
  115. runtime, and then work with the model class or retrieve objects from it.
  116. 2. You can relate another model to
  117. :class:`~django.contrib.contenttypes.models.ContentType` as a way of
  118. tying instances of it to particular model classes, and use these methods
  119. to get access to those model classes.
  120. Several of Django's bundled applications make use of the latter technique.
  121. For example,
  122. :class:`the permissions system <django.contrib.auth.models.Permission>` in
  123. Django's authentication framework uses a
  124. :class:`~django.contrib.auth.models.Permission` model with a foreign
  125. key to :class:`~django.contrib.contenttypes.models.ContentType`; this lets
  126. :class:`~django.contrib.auth.models.Permission` represent concepts like
  127. "can add blog entry" or "can delete news story".
  128. The ``ContentTypeManager``
  129. --------------------------
  130. .. class:: ContentTypeManager
  131. :class:`~django.contrib.contenttypes.models.ContentType` also has a custom
  132. manager, :class:`~django.contrib.contenttypes.models.ContentTypeManager`,
  133. which adds the following methods:
  134. .. method:: clear_cache()
  135. Clears an internal cache used by
  136. :class:`~django.contrib.contenttypes.models.ContentType` to keep track
  137. of models for which it has created
  138. :class:`~django.contrib.contenttypes.models.ContentType` instances. You
  139. probably won't ever need to call this method yourself; Django will call
  140. it automatically when it's needed.
  141. .. method:: get_for_id(id)
  142. Lookup a :class:`~django.contrib.contenttypes.models.ContentType` by ID.
  143. Since this method uses the same shared cache as
  144. :meth:`~django.contrib.contenttypes.models.ContentTypeManager.get_for_model`,
  145. it's preferred to use this method over the usual
  146. ``ContentType.objects.get(pk=id)``
  147. .. method:: get_for_model(model, for_concrete_model=True)
  148. Takes either a model class or an instance of a model, and returns the
  149. :class:`~django.contrib.contenttypes.models.ContentType` instance
  150. representing that model. ``for_concrete_model=False`` allows fetching
  151. the :class:`~django.contrib.contenttypes.models.ContentType` of a proxy
  152. model.
  153. .. method:: get_for_models(*models, for_concrete_models=True)
  154. Takes a variadic number of model classes, and returns a dictionary
  155. mapping the model classes to the
  156. :class:`~django.contrib.contenttypes.models.ContentType` instances
  157. representing them. ``for_concrete_models=False`` allows fetching the
  158. :class:`~django.contrib.contenttypes.models.ContentType` of proxy
  159. models.
  160. .. method:: get_by_natural_key(app_label, model)
  161. Returns the :class:`~django.contrib.contenttypes.models.ContentType`
  162. instance uniquely identified by the given application label and model
  163. name. The primary purpose of this method is to allow
  164. :class:`~django.contrib.contenttypes.models.ContentType` objects to be
  165. referenced via a :ref:`natural key<topics-serialization-natural-keys>`
  166. during deserialization.
  167. The :meth:`~ContentTypeManager.get_for_model()` method is especially
  168. useful when you know you need to work with a
  169. :class:`ContentType <django.contrib.contenttypes.models.ContentType>` but don't
  170. want to go to the trouble of obtaining the model's metadata to perform a manual
  171. lookup:
  172. .. code-block:: pycon
  173. >>> from django.contrib.auth.models import User
  174. >>> ContentType.objects.get_for_model(User)
  175. <ContentType: user>
  176. .. module:: django.contrib.contenttypes.fields
  177. .. _generic-relations:
  178. Generic relations
  179. =================
  180. Adding a foreign key from one of your own models to
  181. :class:`~django.contrib.contenttypes.models.ContentType` allows your model to
  182. effectively tie itself to another model class, as in the example of the
  183. :class:`~django.contrib.auth.models.Permission` model above. But it's possible
  184. to go one step further and use
  185. :class:`~django.contrib.contenttypes.models.ContentType` to enable truly
  186. generic (sometimes called "polymorphic") relationships between models.
  187. For example, it could be used for a tagging system like so::
  188. from django.contrib.contenttypes.fields import GenericForeignKey
  189. from django.contrib.contenttypes.models import ContentType
  190. from django.db import models
  191. class TaggedItem(models.Model):
  192. tag = models.SlugField()
  193. content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
  194. object_id = models.PositiveIntegerField()
  195. content_object = GenericForeignKey("content_type", "object_id")
  196. def __str__(self):
  197. return self.tag
  198. class Meta:
  199. indexes = [
  200. models.Index(fields=["content_type", "object_id"]),
  201. ]
  202. A normal :class:`~django.db.models.ForeignKey` can only "point
  203. to" one other model, which means that if the ``TaggedItem`` model used a
  204. :class:`~django.db.models.ForeignKey` it would have to
  205. choose one and only one model to store tags for. The contenttypes
  206. application provides a special field type (``GenericForeignKey``) which
  207. works around this and allows the relationship to be with any
  208. model:
  209. .. class:: GenericForeignKey
  210. There are three parts to setting up a
  211. :class:`~django.contrib.contenttypes.fields.GenericForeignKey`:
  212. 1. Give your model a :class:`~django.db.models.ForeignKey`
  213. to :class:`~django.contrib.contenttypes.models.ContentType`. The usual
  214. name for this field is "content_type".
  215. 2. Give your model a field that can store primary key values from the
  216. models you'll be relating to. For most models, this means a
  217. :class:`~django.db.models.PositiveIntegerField`. The usual name
  218. for this field is "object_id".
  219. 3. Give your model a
  220. :class:`~django.contrib.contenttypes.fields.GenericForeignKey`, and
  221. pass it the names of the two fields described above. If these fields
  222. are named "content_type" and "object_id", you can omit this -- those
  223. are the default field names
  224. :class:`~django.contrib.contenttypes.fields.GenericForeignKey` will
  225. look for.
  226. Unlike for the :class:`~django.db.models.ForeignKey`, a database index is
  227. *not* automatically created on the
  228. :class:`~django.contrib.contenttypes.fields.GenericForeignKey`, so it's
  229. recommended that you use
  230. :attr:`Meta.indexes <django.db.models.Options.indexes>` to add your own
  231. multiple column index. This behavior :ticket:`may change <23435>` in the
  232. future.
  233. .. attribute:: GenericForeignKey.for_concrete_model
  234. If ``False``, the field will be able to reference proxy models. Default
  235. is ``True``. This mirrors the ``for_concrete_model`` argument to
  236. :meth:`~django.contrib.contenttypes.models.ContentTypeManager.get_for_model`.
  237. .. admonition:: Primary key type compatibility
  238. The "object_id" field doesn't have to be the same type as the
  239. primary key fields on the related models, but their primary key values
  240. must be coercible to the same type as the "object_id" field by its
  241. :meth:`~django.db.models.Field.get_db_prep_value` method.
  242. For example, if you want to allow generic relations to models with either
  243. :class:`~django.db.models.IntegerField` or
  244. :class:`~django.db.models.CharField` primary key fields, you
  245. can use :class:`~django.db.models.CharField` for the
  246. "object_id" field on your model since integers can be coerced to
  247. strings by :meth:`~django.db.models.Field.get_db_prep_value`.
  248. For maximum flexibility you can use a
  249. :class:`~django.db.models.TextField` which doesn't have a
  250. maximum length defined, however this may incur significant performance
  251. penalties depending on your database backend.
  252. There is no one-size-fits-all solution for which field type is best. You
  253. should evaluate the models you expect to be pointing to and determine
  254. which solution will be most effective for your use case.
  255. .. admonition:: Serializing references to ``ContentType`` objects
  256. If you're serializing data (for example, when generating
  257. :class:`~django.test.TransactionTestCase.fixtures`) from a model that implements
  258. generic relations, you should probably be using a natural key to uniquely
  259. identify related :class:`~django.contrib.contenttypes.models.ContentType`
  260. objects. See :ref:`natural keys<topics-serialization-natural-keys>` and
  261. :option:`dumpdata --natural-foreign` for more information.
  262. This will enable an API similar to the one used for a normal
  263. :class:`~django.db.models.ForeignKey`;
  264. each ``TaggedItem`` will have a ``content_object`` field that returns the
  265. object it's related to, and you can also assign to that field or use it when
  266. creating a ``TaggedItem``:
  267. .. code-block:: pycon
  268. >>> from django.contrib.auth.models import User
  269. >>> guido = User.objects.get(username="Guido")
  270. >>> t = TaggedItem(content_object=guido, tag="bdfl")
  271. >>> t.save()
  272. >>> t.content_object
  273. <User: Guido>
  274. If the related object is deleted, the ``content_type`` and ``object_id`` fields
  275. remain set to their original values and the ``GenericForeignKey`` returns
  276. ``None``:
  277. .. code-block:: pycon
  278. >>> guido.delete()
  279. >>> t.content_object # returns None
  280. Due to the way :class:`~django.contrib.contenttypes.fields.GenericForeignKey`
  281. is implemented, you cannot use such fields directly with filters (``filter()``
  282. and ``exclude()``, for example) via the database API. Because a
  283. :class:`~django.contrib.contenttypes.fields.GenericForeignKey` isn't a
  284. normal field object, these examples will *not* work:
  285. .. code-block:: pycon
  286. # This will fail
  287. >>> TaggedItem.objects.filter(content_object=guido)
  288. # This will also fail
  289. >>> TaggedItem.objects.get(content_object=guido)
  290. Likewise, :class:`~django.contrib.contenttypes.fields.GenericForeignKey`\s
  291. does not appear in :class:`~django.forms.ModelForm`\s.
  292. Reverse generic relations
  293. -------------------------
  294. .. class:: GenericRelation
  295. .. attribute:: related_query_name
  296. The relation on the related object back to this object doesn't exist by
  297. default. Setting ``related_query_name`` creates a relation from the
  298. related object back to this one. This allows querying and filtering
  299. from the related object.
  300. If you know which models you'll be using most often, you can also add
  301. a "reverse" generic relationship to enable an additional API. For example::
  302. from django.contrib.contenttypes.fields import GenericRelation
  303. from django.db import models
  304. class Bookmark(models.Model):
  305. url = models.URLField()
  306. tags = GenericRelation(TaggedItem)
  307. ``Bookmark`` instances will each have a ``tags`` attribute, which can
  308. be used to retrieve their associated ``TaggedItems``:
  309. .. code-block:: pycon
  310. >>> b = Bookmark(url="https://www.djangoproject.com/")
  311. >>> b.save()
  312. >>> t1 = TaggedItem(content_object=b, tag="django")
  313. >>> t1.save()
  314. >>> t2 = TaggedItem(content_object=b, tag="python")
  315. >>> t2.save()
  316. >>> b.tags.all()
  317. <QuerySet [<TaggedItem: django>, <TaggedItem: python>]>
  318. You can also use ``add()``, ``create()``, or ``set()`` to create
  319. relationships:
  320. .. code-block:: pycon
  321. >>> t3 = TaggedItem(tag="Web development")
  322. >>> b.tags.add(t3, bulk=False)
  323. >>> b.tags.create(tag="Web framework")
  324. <TaggedItem: Web framework>
  325. >>> b.tags.all()
  326. <QuerySet [<TaggedItem: django>, <TaggedItem: python>, <TaggedItem: Web development>, <TaggedItem: Web framework>]>
  327. >>> b.tags.set([t1, t3])
  328. >>> b.tags.all()
  329. <QuerySet [<TaggedItem: django>, <TaggedItem: Web development>]>
  330. The ``remove()`` call will bulk delete the specified model objects:
  331. .. code-block:: pycon
  332. >>> b.tags.remove(t3)
  333. >>> b.tags.all()
  334. <QuerySet [<TaggedItem: django>]>
  335. >>> TaggedItem.objects.all()
  336. <QuerySet [<TaggedItem: django>]>
  337. The ``clear()`` method can be used to bulk delete all related objects for an
  338. instance:
  339. .. code-block:: pycon
  340. >>> b.tags.clear()
  341. >>> b.tags.all()
  342. <QuerySet []>
  343. >>> TaggedItem.objects.all()
  344. <QuerySet []>
  345. Defining :class:`~django.contrib.contenttypes.fields.GenericRelation` with
  346. ``related_query_name`` set allows querying from the related object::
  347. tags = GenericRelation(TaggedItem, related_query_name="bookmark")
  348. This enables filtering, ordering, and other query operations on ``Bookmark``
  349. from ``TaggedItem``:
  350. .. code-block:: pycon
  351. >>> # Get all tags belonging to bookmarks containing `django` in the url
  352. >>> TaggedItem.objects.filter(bookmark__url__contains="django")
  353. <QuerySet [<TaggedItem: django>, <TaggedItem: python>]>
  354. If you don't add the ``related_query_name``, you can do the same types of
  355. lookups manually:
  356. .. code-block:: pycon
  357. >>> bookmarks = Bookmark.objects.filter(url__contains="django")
  358. >>> bookmark_type = ContentType.objects.get_for_model(Bookmark)
  359. >>> TaggedItem.objects.filter(content_type__pk=bookmark_type.id, object_id__in=bookmarks)
  360. <QuerySet [<TaggedItem: django>, <TaggedItem: python>]>
  361. Just as :class:`~django.contrib.contenttypes.fields.GenericForeignKey`
  362. accepts the names of the content-type and object-ID fields as
  363. arguments, so too does
  364. :class:`~django.contrib.contenttypes.fields.GenericRelation`;
  365. if the model which has the generic foreign key is using non-default names
  366. for those fields, you must pass the names of the fields when setting up a
  367. :class:`.GenericRelation` to it. For example, if the ``TaggedItem`` model
  368. referred to above used fields named ``content_type_fk`` and
  369. ``object_primary_key`` to create its generic foreign key, then a
  370. :class:`.GenericRelation` back to it would need to be defined like so::
  371. tags = GenericRelation(
  372. TaggedItem,
  373. content_type_field="content_type_fk",
  374. object_id_field="object_primary_key",
  375. )
  376. Note also, that if you delete an object that has a
  377. :class:`~django.contrib.contenttypes.fields.GenericRelation`, any objects
  378. which have a :class:`~django.contrib.contenttypes.fields.GenericForeignKey`
  379. pointing at it will be deleted as well. In the example above, this means that
  380. if a ``Bookmark`` object were deleted, any ``TaggedItem`` objects pointing at
  381. it would be deleted at the same time.
  382. Unlike :class:`~django.db.models.ForeignKey`,
  383. :class:`~django.contrib.contenttypes.fields.GenericForeignKey` does not accept
  384. an :attr:`~django.db.models.ForeignKey.on_delete` argument to customize this
  385. behavior; if desired, you can avoid the cascade-deletion by not using
  386. :class:`~django.contrib.contenttypes.fields.GenericRelation`, and alternate
  387. behavior can be provided via the :data:`~django.db.models.signals.pre_delete`
  388. signal.
  389. Generic relations and aggregation
  390. ---------------------------------
  391. :doc:`Django's database aggregation API </topics/db/aggregation>` works with a
  392. :class:`~django.contrib.contenttypes.fields.GenericRelation`. For example, you
  393. can find out how many tags all the bookmarks have:
  394. .. code-block:: pycon
  395. >>> Bookmark.objects.aggregate(Count("tags"))
  396. {'tags__count': 3}
  397. .. module:: django.contrib.contenttypes.forms
  398. Generic relation in forms
  399. -------------------------
  400. The :mod:`django.contrib.contenttypes.forms` module provides:
  401. * :class:`BaseGenericInlineFormSet`
  402. * A formset factory, :func:`generic_inlineformset_factory`, for use with
  403. :class:`~django.contrib.contenttypes.fields.GenericForeignKey`.
  404. .. class:: BaseGenericInlineFormSet
  405. .. 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)
  406. Returns a ``GenericInlineFormSet`` using
  407. :func:`~django.forms.models.modelformset_factory`.
  408. You must provide ``ct_field`` and ``fk_field`` if they are different from
  409. the defaults, ``content_type`` and ``object_id`` respectively. Other
  410. parameters are similar to those documented in
  411. :func:`~django.forms.models.modelformset_factory` and
  412. :func:`~django.forms.models.inlineformset_factory`.
  413. The ``for_concrete_model`` argument corresponds to the
  414. :class:`~django.contrib.contenttypes.fields.GenericForeignKey.for_concrete_model`
  415. argument on ``GenericForeignKey``.
  416. .. module:: django.contrib.contenttypes.admin
  417. Generic relations in admin
  418. --------------------------
  419. The :mod:`django.contrib.contenttypes.admin` module provides
  420. :class:`~django.contrib.contenttypes.admin.GenericTabularInline` and
  421. :class:`~django.contrib.contenttypes.admin.GenericStackedInline` (subclasses of
  422. :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`)
  423. These classes and functions enable the use of generic relations in forms
  424. and the admin. See the :doc:`model formset </topics/forms/modelforms>` and
  425. :ref:`admin <using-generic-relations-as-an-inline>` documentation for more
  426. information.
  427. .. class:: GenericInlineModelAdmin
  428. The :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`
  429. class inherits all properties from an
  430. :class:`~django.contrib.admin.InlineModelAdmin` class. However,
  431. it adds a couple of its own for working with the generic relation:
  432. .. attribute:: ct_field
  433. The name of the
  434. :class:`~django.contrib.contenttypes.models.ContentType` foreign key
  435. field on the model. Defaults to ``content_type``.
  436. .. attribute:: ct_fk_field
  437. The name of the integer field that represents the ID of the related
  438. object. Defaults to ``object_id``.
  439. .. class:: GenericTabularInline
  440. .. class:: GenericStackedInline
  441. Subclasses of :class:`GenericInlineModelAdmin` with stacked and tabular
  442. layouts, respectively.
  443. .. module:: django.contrib.contenttypes.prefetch
  444. ``GenericPrefetch()``
  445. ---------------------
  446. .. versionadded:: 5.0
  447. .. class:: GenericPrefetch(lookup, querysets, to_attr=None)
  448. This lookup is similar to ``Prefetch()`` and it should only be used on
  449. ``GenericForeignKey``. The ``querysets`` argument accepts a list of querysets,
  450. each for a different ``ContentType``. This is useful for ``GenericForeignKey``
  451. with non-homogeneous set of results.
  452. .. code-block:: pycon
  453. >>> from django.contrib.contenttypes.prefetch import GenericPrefetch
  454. >>> bookmark = Bookmark.objects.create(url="https://www.djangoproject.com/")
  455. >>> animal = Animal.objects.create(name="lion", weight=100)
  456. >>> TaggedItem.objects.create(tag="great", content_object=bookmark)
  457. >>> TaggedItem.objects.create(tag="awesome", content_object=animal)
  458. >>> prefetch = GenericPrefetch(
  459. ... "content_object", [Bookmark.objects.all(), Animal.objects.only("name")]
  460. ... )
  461. >>> TaggedItem.objects.prefetch_related(prefetch).all()
  462. <QuerySet [<TaggedItem: Great>, <TaggedItem: Awesome>]>