Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Sep 13, 2023
1 parent ce42d97 commit b0fc9bc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/versioning_integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,11 @@ object. This will ensure that only published objects are visible to the public.
In some situations, namely when working in the admin, it is helpful to also have
other content objects available, e.g. when linking to a not-yet-published object.

Verisoned objects therefore also have an additional manager ``admin_manager``
Versioned objects therefore also have an additional manager ``admin_manager``
which can access all objects. To get all draft blog posts, you can write
``PostContent.admin_manager.filter(versions__state=DRAFT)``.
``PostContent.admin_manager.filter(versions__state=DRAFT)``. Since the
``admin_manager`` has access to non-public information it should only be
used inside the Django admin (hence its name).


Implement a custom copy function
Expand Down

0 comments on commit b0fc9bc

Please sign in to comment.