Skip to content

Commit adece2e

Browse files
committed
new django resource
1 parent 14c07f8 commit adece2e

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

all.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,12 @@ <h2>Django ORM resources</h2>
393393
database will require a lot more work to port over to another backend
394394
even with the power of the ORM.</p>
395395
</li>
396+
<li>
397+
<p><a href="http://blog.kevinastone.com/django-model-descriptors.html">Django Model Descriptors</a>
398+
discusses and shows how to incorporate business logic into Django models
399+
to reduce complexity from the views and make the code easier to reuse across
400+
separate views.</p>
401+
</li>
396402
</ul>
397403
<h2>Open source Django example projects</h2>
398404
<ul>

django.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,12 @@ <h2>Django ORM resources</h2>
294294
database will require a lot more work to port over to another backend
295295
even with the power of the ORM.</p>
296296
</li>
297+
<li>
298+
<p><a href="http://blog.kevinastone.com/django-model-descriptors.html">Django Model Descriptors</a>
299+
discusses and shows how to incorporate business logic into Django models
300+
to reduce complexity from the views and make the code easier to reuse across
301+
separate views.</p>
302+
</li>
297303
</ul>
298304
<h2>Open source Django example projects</h2>
299305
<ul>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-12-14T08:44:33Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-12-16T10:58:34Z</updated></feed>

source/content/pages/02-web-frameworks/0202-django.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@ existing framework.
246246
database will require a lot more work to port over to another backend
247247
even with the power of the ORM.
248248

249+
* [Django Model Descriptors](http://blog.kevinastone.com/django-model-descriptors.html)
250+
discusses and shows how to incorporate business logic into Django models
251+
to reduce complexity from the views and make the code easier to reuse across
252+
separate views.
253+
249254

250255
## Open source Django example projects
251256
* [Txt 2 React](https://github.com/makaimc/txt2react) is a full Django web

0 commit comments

Comments
 (0)