Skip to content

Commit c8e46c3

Browse files
committed
add a couple of django and django orm resources
1 parent 9bf5bef commit c8e46c3

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

content/pages/03-data/08-django-orm.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@ that have been added throughout the project's history.
6868
ElasticSearch. This is great for small sites before you scale them up with
6969
a more robust search engine.
7070

71+
* The
72+
[Django ORM Cookbook](https://books.agiliq.com/projects/django-orm-cookbook/en/latest/)
73+
provides code recipes for various ways to use the Django ORM to insert and
74+
query data.
75+
7176
* [How to use Django's Proxy Models](http://benlopatin.com/using-django-proxy-models/)
7277
is a solid post on a Django ORM concept that doesn't frequently get a lot
7378
of love or explanation.

content/pages/04-web-development/02-django.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,14 @@ since then.
128128
will show you how to integrate social media sign in buttons into your Django
129129
application.
130130

131+
* The [Django Admin Cookbook](https://books.agiliq.com/projects/django-admin-cookbook/en/latest/)
132+
and
133+
[Building Multi Tenant Applications with Django](https://books.agiliq.com/projects/django-multi-tenant/en/latest/)
134+
are two solid "code recipe-style" free open source books that will teach
135+
you more about the admin interface as well as building projects that
136+
will be used by more than a single customer so their data needs to be
137+
properly separated.
138+
131139
* Luke Plant writes about
132140
[his approach to class based views](http://lukeplant.me.uk/blog/posts/my-approach-to-class-based-views/) (CBVs),
133141
which often provoke heated debate in the Django community for whether they

0 commit comments

Comments
 (0)