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

This commit is contained in:
Taishi Endo 2024-03-30 00:33:08 +09:00 committed by GitHub
parent 5f3cdf219d
commit 0df520979a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -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