From 2492630762d76f2f307716be3458615b2683dbca Mon Sep 17 00:00:00 2001
From: depate <gutluft@outlook.com>
Date: Wed, 26 Sep 2018 02:38:47 +0200
Subject: [PATCH 1/2] Changed an expression.

---
 en/homework/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/en/homework/README.md b/en/homework/README.md
index 5acc757..29639eb 100644
--- a/en/homework/README.md
+++ b/en/homework/README.md
@@ -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 body 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.
 
 ```django
 <a href="{% url 'post_draft_list' %}" class="top-menu"><span class="glyphicon glyphicon-edit"></span></a>

From bab3620b6bfcd2e21c08222113d112f07658f7d9 Mon Sep 17 00:00:00 2001
From: depate <gutluft@outlook.com>
Date: Wed, 26 Sep 2018 02:49:26 +0200
Subject: [PATCH 2/2] Rephrased it again, to hopefully make it more clear

---
 en/homework/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/en/homework/README.md b/en/homework/README.md
index 29639eb..c2f9aeb 100644
--- a/en/homework/README.md
+++ b/en/homework/README.md
@@ -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 the body 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.
+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.
 
 ```django
 <a href="{% url 'post_draft_list' %}" class="top-menu"><span class="glyphicon glyphicon-edit"></span></a>