From a18b1335a06b07983dd3b0c55eb4e797494d3804 Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Fri, 19 Jul 2024 10:26:48 +0200 Subject: [PATCH] v11.1.2 --- CHANGES.md | 4 ++++ ambient_toolbox/__init__.py | 2 +- docs/features/models.md | 5 +++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index ae47c48..869b3c6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +**11.1.2** (2024-07-19) + * Added limitation paragraph to object ownership admin documentation + + **11.1.1** (2024-07-19) * Fixed a bug leading to missing docs diff --git a/ambient_toolbox/__init__.py b/ambient_toolbox/__init__.py index ebdc3ee..7267150 100644 --- a/ambient_toolbox/__init__.py +++ b/ambient_toolbox/__init__.py @@ -1,3 +1,3 @@ """Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets.""" -__version__ = "11.1.1" +__version__ = "11.1.2" diff --git a/docs/features/models.md b/docs/features/models.md index 14b00a0..48e6e87 100644 --- a/docs/features/models.md +++ b/docs/features/models.md @@ -64,3 +64,8 @@ class MyModelAdmin(CommonInfoAdminMixin, admin.ModelAdmin): Note, that you can derive from this class and overwrite the `get_user_obj()` method if your ownership doesn't use the default Django user object. This might be the case if you work with a OneToOne relation between the default `User` and your custom one. + +#### Limitations + +Note that this package doesn't provide a mixin for InlineAdmins. But when you install the middleware, this shouldn't be +necessary anyway.