Skip to content

Commit 382f613

Browse files
committed
[docs] Updated refs to Django docs [skip ci]
1 parent a2c3865 commit 382f613

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/developer/cache.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Notification Cache
44
In a typical OpenWISP installation, ``actor``, ``action_object`` and
55
``target`` objects are same for a number of notifications. To optimize
66
database queries, these objects are cached using `Django's cache framework
7-
<https://docs.djangoproject.com/en/4.2/topics/cache/>`_. The cached values
7+
<https://docs.djangoproject.com/en/5.2/topics/cache/>`_. The cached values
88
are updated automatically to reflect actual data from database. You can
99
control the duration of caching these objects using
1010
:ref:`OPENWISP_NOTIFICATIONS_CACHE_TIMEOUT setting
@@ -52,4 +52,4 @@ following code in your ``apps.py``.
5252
signal. You can pass any value you want but it needs to be unique. For
5353
more details read `preventing duplicate signals section of Django
5454
documentation
55-
<https://docs.djangoproject.com/en/4.2/topics/signals/#preventing-duplicate-signals>`_
55+
<https://docs.djangoproject.com/en/5.2/topics/signals/#preventing-duplicate-signals>`_

docs/developer/extending.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ removed:
6363
6464
For more information about how to work with django projects and django
6565
apps, please refer to the `django documentation
66-
<https://docs.djangoproject.com/en/4.2/intro/tutorial01/>`_.
66+
<https://docs.djangoproject.com/en/5.2/intro/tutorial01/>`_.
6767

6868
2. Install ``openwisp-notifications``
6969
-------------------------------------
@@ -137,7 +137,7 @@ Please refer to the following files in the sample app of the test project:
137137

138138
For more information regarding the concept of ``AppConfig`` please refer
139139
to the `"Applications" section in the django documentation
140-
<https://docs.djangoproject.com/en/4.2/ref/applications/>`_.
140+
<https://docs.djangoproject.com/en/5.2/ref/applications/>`_.
141141

142142
7. Create your custom models
143143
----------------------------
@@ -152,7 +152,7 @@ You can add fields in a similar way in your ``models.py`` file.
152152

153153
If you have questions about using, extending, or developing models,
154154
refer to the `"Models" section of the Django documentation
155-
<https://docs.djangoproject.com/en/4.2/topics/db/models/>`_.
155+
<https://docs.djangoproject.com/en/5.2/topics/db/models/>`_.
156156

157157
8. Add swapper configurations
158158
-----------------------------
@@ -183,7 +183,7 @@ Create and apply database migrations:
183183
184184
For more information, refer to the `"Migrations" section in the django
185185
documentation
186-
<https://docs.djangoproject.com/en/4.2/topics/migrations/>`_.
186+
<https://docs.djangoproject.com/en/5.2/topics/migrations/>`_.
187187

188188
10. Create your custom admin
189189
----------------------------
@@ -199,7 +199,7 @@ are described below.
199199
For more information regarding how the django admin works, or how it
200200
can be customized, please refer to `"The django admin site" section in
201201
the django documentation
202-
<https://docs.djangoproject.com/en/4.2/ref/contrib/admin/>`_.
202+
<https://docs.djangoproject.com/en/5.2/ref/contrib/admin/>`_.
203203

204204
1. Monkey patching
205205
~~~~~~~~~~~~~~~~~~
@@ -256,7 +256,7 @@ file in the test project.
256256

257257
For more information about URL configuration in django, please refer to
258258
the `"URL dispatcher" section in the django documentation
259-
<https://docs.djangoproject.com/en/4.2/topics/http/urls/>`_.
259+
<https://docs.djangoproject.com/en/5.2/topics/http/urls/>`_.
260260

261261
12. Create root routing configuration
262262
-------------------------------------
@@ -299,7 +299,7 @@ in `"templatetags/notification_tags.py" of sample_notifications
299299

300300
For more information about template tags in django, please refer to the
301301
`"Custom template tags and filters" section in the django documentation
302-
<https://docs.djangoproject.com/en/4.2/topics/http/urls/>`_.
302+
<https://docs.djangoproject.com/en/5.2/topics/http/urls/>`_.
303303

304304
16. Register Notification Types
305305
-------------------------------

docs/user/settings.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Configure Django's settings as follows:
9494
CSRF_COOKIE_DOMAIN = "example.com"
9595
9696
Please refer to `Django's settings documentation
97-
<https://docs.djangoproject.com/en/4.2/ref/settings/>`_ for more
97+
<https://docs.djangoproject.com/en/5.2/ref/settings/>`_ for more
9898
information on ``SESSION_COOKIE_DOMAIN`` and ``CSRF_COOKIE_DOMAIN``
9999
settings.
100100

0 commit comments

Comments
 (0)