Skip to content

Commit 05cc3b4

Browse files
committed
spell "URL" with all caps in prose
1 parent 24edc06 commit 05cc3b4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

en/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* [Django models](django_models/README.md)
1515
* [Django admin](django_admin/README.md)
1616
* [Deploy!](deploy/README.md)
17-
* [Django urls](django_urls/README.md)
17+
* [Django URLs](django_urls/README.md)
1818
* [Django views – time to create!](django_views/README.md)
1919
* [Introduction to HTML](html/README.md)
2020
* [Django ORM (Querysets)](django_orm/README.md)

en/django_urls/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We're about to build our first webpage: a homepage for your blog! But first, let
66

77
A URL is a web address. You can see a URL every time you visit a website – it is visible in your browser's address bar. (Yes! `127.0.0.1:8000` is a URL! And `https://djangogirls.org` is also a URL.)
88

9-
![Url](images/url.png)
9+
![URL](images/url.png)
1010

1111
Every page on the Internet needs its own URL. This way your application knows what it should show to a user who opens that URL. In Django, we use something called `URLconf` (URL configuration). URLconf is a set of patterns that Django will try to match the requested URL to find the correct view.
1212

@@ -87,7 +87,7 @@ urlpatterns = [
8787
]
8888
```
8989

90-
As you can see, we're now assigning a `view` called `post_list` to the root URL. This URL pattern will match an empty string and the Django URL resolver will ignore the domain name (i.e., http://127.0.0.1:8000/) that prefixes the full url path. This pattern will tell Django that `views.post_list` is the right place to go if someone enters your website at the 'http://127.0.0.1:8000/' address.
90+
As you can see, we're now assigning a `view` called `post_list` to the root URL. This URL pattern will match an empty string and the Django URL resolver will ignore the domain name (i.e., http://127.0.0.1:8000/) that prefixes the full URL path. This pattern will tell Django that `views.post_list` is the right place to go if someone enters your website at the 'http://127.0.0.1:8000/' address.
9191

9292
The last part, `name='post_list'`, is the name of the URL that will be used to identify the view. This can be the same as the name of the view but it can also be something completely different. We will be using the named URLs later in the project, so it is important to name each URL in the app. We should also try to keep the names of URLs unique and easy to remember.
9393

en/extend_your_application/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Extend your application
44

5-
We've already completed all the different steps necessary for the creation of our website: we know how to write a model, url, view and template. We also know how to make our website pretty.
5+
We've already completed all the different steps necessary for the creation of our website: we know how to write a model, URL, view and template. We also know how to make our website pretty.
66

77
Time to practice!
88

0 commit comments

Comments
 (0)