Using Django, how would I generate a Tumblr-style series of date-ordered pages of different objects? April 13, 2012, 4:26 p.m.

Your best bet would be to actually work in reverse. Each of those is a type of user-generated content, so they should all inherit from a common base. Then you can simply query the base model and get a list of everything.

django

Django snippets: Authenticate against Active Directory March 12, 2012, 1:39 p.m.

Use active directory to authenticate Django users.

programming development code python authentication active directory ldap django