Skip to content

Commit a1e2a28

Browse files
committed
Merge pull request DjangoGirls#252 from kerstin/master
Removed/replaced references to sweet treats
2 parents 271a032 + f26fa57 commit a1e2a28

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

en/django_admin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Make sure that at least two or three posts (but not all) have the publish date s
4040

4141
If you want to know more about Django admin, you should check Django's documentation: https://docs.djangoproject.com/en/1.7/ref/contrib/admin/
4242

43-
It is probably a good moment to grab a coffee (or tea) and eat something sweet. You created your first Django model - you deserve a little treat!
43+
This is probably a good moment to grab a coffee (or tea) or something to eat to re-energise yourself. You created your first Django model - you deserve a little timeout!
4444

4545

en/django_forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,4 +298,4 @@ It'd be good to see if your website will still be working on Heroku, right? Let'
298298
...
299299
$ git push heroku master
300300

301-
And that should be it! Congrats :)
301+
And that should be it! Congrats :)

en/django_templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ It'd be good to see if your website will still be working on Heroku, right? Let'
7070

7171
Congrats! Now go ahead and try adding a new post in your Django admin (remember to add published_date!), then refresh your page to see if the post appears there.
7272

73-
Works like a charm? We're proud! Treat yourself something sweet, you have earned it :)
73+
Works like a charm? We're proud! Step away from your computer for a bit, you have earned a break. :)
7474

7575
![Figure 13.4](images/donut.png)

en/dynamic_data_in_templates/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ But what's next? To take actual blog posts from `Post` model we need something c
2424

2525
## QuerySet
2626

27-
You should already be familiar with how QuerySets work. We talked about it in [Django ORM (QuerySets) chapter](/django_orm/README.html).
27+
You should already be familiar with how QuerySets work. We talked about it in [Django ORM (QuerySets) chapter](/django_orm/README.html).
2828

2929
So now we are interested in a list of blog posts that are published and sorted by `published_date`, right? We already did that in QuerySets chapter!
30-
30+
3131
Post.objects.filter(published_date__isnull=False).order_by('published_date')
3232

3333
Now we put this piece of code inside the `blog/views.py` file by adding it to the function `def post_list(request)`:

en/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,6 +660,6 @@ Note that the second of these two numbers is not included in the list that is ou
660660

661661
That's it. __You totally rock!__ This really wasn't so easy, so you should feel proud of yourself. We're definitely proud of you for making it to here!
662662

663-
Grab yourself a cupcake and go to the next chapter :)
663+
You might want to briefly do something else - stretch, walk around for a bit, rest your eyes - before going on to the next chapter. :)
664664

665665
![Cupcake](images/cupcake.png)

0 commit comments

Comments
 (0)