Skip to content

Commit 2cc10db

Browse files
committed
more api links
1 parent abbf2db commit 2cc10db

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

source/interact-data/crud.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ code:
115115

116116
.. tip::
117117

118-
To learn more about the ``create()`` method, see `create()
119-
<{+django-docs+}/ref/models/querysets/#create>`__ in the {+framework+}
118+
To learn more about the ``create()`` method, see
119+
:py:function:`~django.db.models.query.QuerySet.create` in the {+framework+}
120120
documentation.
121-
121+
122122
.. _django-crud-read:
123123

124124
Read Documents
@@ -155,10 +155,10 @@ returns ``Movie`` objects that represent movies released on January 1, 2000:
155155

156156
.. tip::
157157

158-
To learn more about the ``filter()`` method, see `filter()
159-
<{+django-docs+}/ref/models/querysets/#filter>`__ in the {+framework+}
160-
documentation.
161-
158+
To learn more about the ``filter()`` method, see
159+
:py:function:`~django.db.models.query.QuerySet.filter`
160+
in the {+framework+} documentation.
161+
162162
Return One Document Example
163163
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
164164

@@ -192,9 +192,9 @@ retrieves a document in which the ``title`` value is ``"Boyhood"``:
192192

193193
.. tip::
194194

195-
To learn more about the ``get()`` method, see `get()
196-
<{+django-docs+}/ref/models/querysets/#get>`__ in the {+framework+}
197-
documentation.
195+
To learn more about the ``get()`` method, see
196+
:py:function:`~django.db.models.query.QuerySet.get`
197+
in the {+framework+} documentation.
198198

199199
.. _django-crud-modify:
200200

@@ -231,9 +231,9 @@ a document that has a ``title`` value of ``"High Fidelity"`` and adds a
231231

232232
.. tip::
233233

234-
To learn more about the ``update()`` method, see `update()
235-
<{+django-docs+}/ref/models/querysets/#update>`__ in the {+framework+}
236-
documentation.
234+
To learn more about the ``update()`` method, see
235+
:py:function:`~django.db.models.query.QuerySet.update`
236+
in the {+framework+} documentation.
237237

238238
.. _django-crud-delete:
239239

@@ -268,9 +268,9 @@ and deletes documents that have a ``runtime`` value of ``5``:
268268

269269
.. tip::
270270

271-
To learn more about the ``delete()`` method, see `delete()
272-
<{+django-docs+}/ref/models/querysets/#delete>`__ in the {+framework+}
273-
documentation.
271+
To learn more about the ``delete()`` method, see
272+
:py:function:`~django.db.models.query.QuerySet.delete`
273+
in the {+framework+} documentation.
274274

275275
Additional Information
276276
----------------------

0 commit comments

Comments
 (0)