Skip to content

Commit bd9540d

Browse files
committed
updating file reference
1 parent c77b9f0 commit bd9540d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/python/learn-django-in-visual-studio-step-04-full-django-project-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Nevertheless, to use an existing virtual environment, follow the steps below:
8585

8686
## Step 4-2: Understand the views and page templates created by the project template
8787

88-
As you observe when you run the project, the app contains three views: Home, About, and Contact. The code for these views is found in the *app/views* folder. Each view function calls `django.shortcuts.render` with the path to a template and a simple dictionary object. For example, the About page is handled by the `about` function:
88+
As you observe when you run the project, the app contains three views: Home, About, and Contact. The code for these views is found in the *views.py* file. Each view function calls `django.shortcuts.render` with the path to a template and a simple dictionary object. For example, the About page is handled by the `about` function:
8989

9090
```python
9191
def about(request):

0 commit comments

Comments
 (0)