summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorJustin Caratzas <bigjust@lambdaphil.es>2014-09-22 17:29:44 -0400
committerTim Graham <timograham@gmail.com>2014-09-24 06:32:42 -0400
commitcf43a1ee909ab5dbca5b6a40247cd093a3e2ac8d (patch)
treeb2c16996ce62f285685b2348020b3f9bed285721 /docs/releases
parent2f3a4cd573166e6b7bac9ed89d448ca34ab93edf (diff)
Fixed #23539 -- Added get_extra(), get_max_num(), and get_min_num() hooks to GenericInlineModelAdmin.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/1.7.1.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index aa7d7f90a0..8d8af5c7f2 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -61,3 +61,9 @@ Bugfixes
* Fixed renaming of models with a self-referential many-to-many field
(``ManyToManyField('self')``) (:ticket:`23503`).
+
+* Added the :meth:`~django.contrib.admin.InlineModelAdmin.get_extra()`,
+ :meth:`~django.contrib.admin.InlineModelAdmin.get_max_num()`, and
+ :meth:`~django.contrib.admin.InlineModelAdmin.get_min_num()` hooks to
+ :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin`
+ (:ticket:`23539`).