Skip to content

Commit 291ec54

Browse files
committed
links
1 parent ede0d4d commit 291ec54

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

source/interact-data/crud.txt

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ collection.
2626

2727
You can also use the {+framework+} admin site to edit your models
2828
and their corresponding collections on a web interface. For
29-
more information, see :py:mod:`~django.contrib.admin`
29+
more information, see :py:mod:`~django.contrib.admindocs`
3030
in the {+framework+} documentation.
3131

3232
Query API
@@ -116,10 +116,8 @@ code:
116116
.. tip::
117117

118118
To learn more about the ``create()`` method, see
119-
:py:method:`#django.db.models.query.QuerySet.create` in the {+framework+}
119+
:py:meth:`~django.db.models.query.QuerySet.create` in the {+framework+}
120120
documentation.
121-
:py:meth:`~django.db.models.query.QuerySet.create`
122-
:py:class:`~django.contrib.auth.middleware.AuthenticationMiddleware`
123121

124122
.. _django-crud-read:
125123

@@ -158,7 +156,7 @@ returns ``Movie`` objects that represent movies released on January 1, 2000:
158156
.. tip::
159157

160158
To learn more about the ``filter()`` method, see
161-
:py:method:`~django.db.models.query.QuerySet.filter`
159+
:py:meth:`~django.db.models.query.QuerySet.filter`
162160
in the {+framework+} documentation.
163161

164162
Return One Document Example
@@ -195,7 +193,7 @@ retrieves a document in which the ``title`` value is ``"Boyhood"``:
195193
.. tip::
196194

197195
To learn more about the ``get()`` method, see
198-
:py:method:`~django.db.models.query.QuerySet.get`
196+
:py:meth:`~django.db.models.query.QuerySet.get`
199197
in the {+framework+} documentation.
200198

201199
.. _django-crud-modify:
@@ -234,7 +232,7 @@ a document that has a ``title`` value of ``"High Fidelity"`` and adds a
234232
.. tip::
235233

236234
To learn more about the ``update()`` method, see
237-
:py:method:`~django.db.models.query.QuerySet.update`
235+
:py:meth:`~django.db.models.query.QuerySet.update`
238236
in the {+framework+} documentation.
239237

240238
.. _django-crud-delete:
@@ -271,7 +269,7 @@ and deletes documents that have a ``runtime`` value of ``5``:
271269
.. tip::
272270

273271
To learn more about the ``delete()`` method, see
274-
:py:method:`~django.db.models.query.QuerySet.delete`
272+
:py:meth:`~django.db.models.query.QuerySet.delete`
275273
in the {+framework+} documentation.
276274

277275
Additional Information

0 commit comments

Comments
 (0)