We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4fa74 commit b209995Copy full SHA for b209995
README.md
@@ -194,11 +194,11 @@ def your_view(request):
194
195
## `example_app/urls.py`
196
197
-Include your template in the list of urlpatterns
+Include your view in the list of urlpatterns
198
199
```python
200
from django.urls import path
201
-from .views import your_view # define this view like any other HTML template
+from .views import your_view # define this view like any other HTML template view
202
203
urlpatterns = [
204
path("", your_view),
0 commit comments