Skip to content

Commit cee2504

Browse files
committed
updating older pages with newer references
1 parent fa79d72 commit cee2504

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

content/pages/07-web-development/03-django.markdown

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,10 @@ syntax and language semantics first before diving into web development.
5858

5959

6060
## Django books and tutorials
61-
There are a slew of free or low cost resources out there for Django. Since
61+
There are a slew of free or low cost resources out there for Django. Make
62+
sure to check the version numbers used in each post you read because
6263
Django was released over 10 years ago and has had a huge number of updates
63-
since then, when you're looking for an up-to-date Django book check out the
64-
list below or read this post showing [current Django books](http://twoscoopspress.org/pages/current-django-books)
65-
as of Django 1.9.
64+
since then.
6665

6766
* [Test-Driven Development with Python](http://www.obeythetestinggoat.com/)
6867
focuses on web development using Django and JavaScript. This book uses
@@ -71,16 +70,16 @@ as of Django 1.9.
7170
also coverage of NoSQL, WebSockets and asynchronous responses. The book can
7271
be read online for free or purchased in hard copy via O'Reilly.
7372

74-
* [Tango with Django](http://www.tangowithdjango.com/book17/) is an extensive
73+
* [Tango with Django](http://www.tangowithdjango.com/) is an extensive
7574
set of free introductions to using the most popular Python web framework.
7675
Several current developers said this book really helped them get over the
77-
initial framework learning curve. It's recently been updated for Django 1.7!
76+
initial framework learning curve.
7877

7978
* The [Django Girls Tutorial](http://tutorial.djangogirls.org/en/index.html)
8079
is a great tutorial that doesn't assume any prior knowledge of Python or
8180
Django while helping you build your first web application.
8281

83-
* [2 Scoops of Django](http://twoscoopspress.com/products/two-scoops-of-django-1-8)
82+
* [2 Scoops of Django](https://www.twoscoopspress.com/collections/django/products/two-scoops-of-django-1-11)
8483
by Daniel Greenfeld and Audrey Roy is well worth the price of admission if
8584
you're serious about learning how to correctly develop Django websites.
8685

content/pages/09-data/06-object-relational-mappers.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ statement which may not be tuned properly.
106106

107107
ORMs are also often easy to try but difficult to master. For example, a
108108
beginner using Django might not know about the
109-
[`select_related()` function](https://docs.djangoproject.com/en/1.8/ref/models/querysets/#select-related)
109+
[`select_related()` function](https://docs.djangoproject.com/en/2.0/ref/models/querysets/#select-related)
110110
and how it can improve some queries' foreign key relationship performance.
111111
There are dozens of performance tips and tricks for every ORM. It's possible
112112
that investing time in learning those quirks may be better spent just

content/pages/12-meta/01-change-log.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ on GitHub.
1717

1818
## 2017
1919
### December
20+
* Working on revamping older pages such as [Django](/django.html) by
21+
eliminating outdated resources and adding the latest and greatest.
2022
* Removing <a href="http://www.deploypython.com/">Guide to Deployments</a>
2123
links until the next version is out (estimated Spring 2018 after
2224
Ubuntu 18.04 LTS releases).

0 commit comments

Comments
 (0)