Browse Source

[5.0.x] Restored django.db.models.F import in final code snippet added at the beginning of tutorial 4.

Backport of 0df520979a5677baf9ed2801ed5c38f859edaa4d from main
Taishi Endo 1 year ago
parent
commit
7b144e7cae
1 changed files with 1 additions and 0 deletions
  1. 1 0
      docs/intro/tutorial04.txt

+ 1 - 0
docs/intro/tutorial04.txt

@@ -272,6 +272,7 @@ views and use Django's generic views instead. To do so, open the
 .. code-block:: python
     :caption: ``polls/views.py``
 
+    from django.db.models import F
     from django.http import HttpResponseRedirect
     from django.shortcuts import get_object_or_404, render
     from django.urls import reverse