diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 15a5ba2..5c6e77c 100644
a
|
b
|
The difference between these two is merely the template used to render them.
|
1060 | 1060 | ``InlineModelAdmin`` options |
1061 | 1061 | ----------------------------- |
1062 | 1062 | |
1063 | | The ``InlineModelAdmin`` class is a subclass of ``ModelAdmin`` so it inherits |
1064 | | all the same functionality as well as some of its own: |
| 1063 | ``InlineModelAdmin`` shares many of the same features as ``ModelAdmin``, and adds some of |
| 1064 | its own (the shared features are actually defined in the ``BaseModelAdmin`` superclass). The |
| 1065 | shared features are: |
| 1066 | |
| 1067 | - :attr:`~ModelAdmin.form` |
| 1068 | - :attr:`~ModelAdmin.fieldsets` |
| 1069 | - :attr:`~ModelAdmin.fields` |
| 1070 | - :attr:`~ModelAdmin.exclude` |
| 1071 | - :attr:`~ModelAdmin.filter_horizontal` and :attr:`~ModelAdmin.filter_vertical` |
| 1072 | - :attr:`~ModelAdmin.prepopulated_fields` |
| 1073 | - :attr:`~ModelAdmin.radio_fields` |
| 1074 | - :attr:`~ModelAdmin.raw_id_fields` |
| 1075 | |
| 1076 | .. versionadded:: 1.1 |
| 1077 | |
| 1078 | - :meth:`~ModelAdmin.formfield_for_foreignkey` |
| 1079 | - :meth:`~ModelAdmin.formfield_for_manytomany` |
| 1080 | |
| 1081 | .. versionadded:: 1.2 |
| 1082 | |
| 1083 | - :attr:`~ModelAdmin.readonly_fields` |
| 1084 | - :attr:`~ModelAdmin.formfield_overrides` |
| 1085 | |
| 1086 | |
| 1087 | The ``InlineModelAdmin`` class adds: |
1065 | 1088 | |
1066 | 1089 | .. attribute:: InlineModelAdmin.model |
1067 | 1090 | |
… |
… |
all the same functionality as well as some of its own:
|
1146 | 1169 | Defaults to ``True``. |
1147 | 1170 | |
1148 | 1171 | |
| 1172 | .. method:: InlineModelAdmin.queryset(self, request) |
| 1173 | |
| 1174 | The ``queryset`` method on an ``InlineModelAdmin`` returns a |
| 1175 | :class:`~django.db.models.QuerySet` of all model instances that can be |
| 1176 | edited by the inline admin control. |
| 1177 | |
| 1178 | |
1149 | 1179 | Working with a model with two or more foreign keys to the same parent model |
1150 | 1180 | --------------------------------------------------------------------------- |
1151 | 1181 | |