-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changed an expression #109
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry this took so long to be reviewed. I just suggested one change and we will merge this in. Thanks for your work on this!
en/homework/README.md
Outdated
@@ -18,7 +18,7 @@ Remember the chapter about querysets? We created a view `post_list` that display | |||
|
|||
Time to do something similar, but for draft posts. | |||
|
|||
Let's add a link in `blog/templates/blog/base.html` in the header. We don't want to show our list of drafts to everybody, so we'll put it inside the `{% if user.is_authenticated %}` check, right after the button for adding new posts. | |||
Let's add a link in the `<div class="page-header">` section of `blog/templates/blog/base.html`. We don't want to show our list of drafts to everybody, so we'll put it inside the `{% if user.is_authenticated %}` check, right after the button for adding new posts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would just say Let's add a link in the page-header section of
instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would just say
Let's add a link in the page-header section of
instead.
Would you like to commit this change to this PR's branch, @amakarudze?
Hey all!
After attending a django-workshop, I started to further continue with the extended section of the tutorial.
There I stumbled upon the phrase:
Let's add a link in `blog/templates/blog/base.html` in the header.
I was confused, because I associated the header section of the html file at first and did not think about. that the class definition of the div tag is meant.
My suggestion is to rephrase the sentence to make it more clear. What do you think?
Regards
Patrik