From de0f0662c818fe2923cf3f2c80047ffea99bcb1a Mon Sep 17 00:00:00 2001 From: Dmytro Litvinov Date: Tue, 13 Aug 2024 16:41:44 +0300 Subject: [PATCH] chore(docs): Update extending_filer.rst Use latest LTS version links to Django documentation --- docs/extending_filer.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/extending_filer.rst b/docs/extending_filer.rst index 755a5f2df..7dcae9b94 100644 --- a/docs/extending_filer.rst +++ b/docs/extending_filer.rst @@ -214,7 +214,7 @@ field. You can override this behavior by subclassing the You can also override the search behavior for :py:class:`Folders`. Just override :py:attr:`~filer.admin.folderadmin.FolderAdmin.search_fields` by subclassing the :py:class:`filer.admin.folderadmin.FolderAdmin`. It works as described in -`Django's docs `_. E.g.: +`Django's docs `_. E.g.: .. code-block:: python @@ -230,7 +230,7 @@ Providing custom Image model ---------------------------- As the ``Image`` model is special, a different way to implement custom Image model is required, which uses the Django -`swappable models `_ interface. +`swappable models `_ interface. Defining the model ..................