Skip to content

Commit 7219036

Browse files
committed
Fix missing article
1 parent 033c7d2 commit 7219036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/django/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ When a request comes to a web server it's passed to Django which tries to figure
2020

2121
Imagine a mail carrier with a letter. She is walking down the street and checks each house number against the one on the letter. If it matches, she puts the letter there. This is how the urlresolver works!
2222

23-
In the *view* function all the interesting things are done: we can look at a database to look for some information. Maybe the user asked to change something in the data? Like a letter saying "Please change description of my job." The *view* can check if you are allowed to do that, then update the job description for you and send back a message: "Done!". Then the *view* generates a response and Django can send it to the user's web browser.
23+
In the *view* function all the interesting things are done: we can look at a database to look for some information. Maybe the user asked to change something in the data? Like a letter saying "Please change the description of my job." The *view* can check if you are allowed to do that, then update the job description for you and send back a message: "Done!". Then the *view* generates a response and Django can send it to the user's web browser.
2424

2525
Of course, the description above is a little bit simplified, but you don't need to know all the technical things yet. Having a general idea is enough.
2626

0 commit comments

Comments
 (0)