summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@sixmedia.com>2013-07-31 12:52:11 +0700
committerTim Graham <timograham@gmail.com>2013-08-04 09:14:18 -0400
commitebb3e50243448545c7314a1932a9067ddca5960b (patch)
tree5e4af9ef2bf3a9952e6410ef18366340b9523772 /docs/internals
parent61ecb5f48a4732f1471f858c64904ec1c4763925 (diff)
Introduced ModelAdmin.get_fields() and refactored get_fieldsets() to use it.
Refs #18681. This also starts the deprecation of ModelAdmin.declared_fieldsets
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 9b0dbf8ffa..fe8b48a5a9 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -426,6 +426,8 @@ these changes.
* ``django.utils.datastructures.SortedDict`` will be removed. Use
:class:`collections.OrderedDict` from the Python standard library instead.
+* ``ModelAdmin.declared_fieldsets`` will be removed.
+
2.0
---