django-contrib is a django package with a variety of extra, optional tools that solve common Web-development problems
3
votes
4answers
966 views
Django: Why create a OneToOne to UserProfile instead of subclassing auth.User?
Note: If you are tempted to 'answer' this question by telling me that you don't like django.contrib.auth, please move on. That will not be helpful. I am well aware of the range and strength of ...
10
votes
3answers
2k views
request.user returns a SimpleLazyObject, how do I “wake” it?
I have the following method:
def _attempt(actor):
if actor.__class__ != User:
raise TypeError
Which is called from a view:
self.object.attempt(self.request.user)
As you can see, the ...
9
votes
2answers
2k views
contrib.staticfiles and Django admin media
I just switched from 1.2 to trunk (r15175 at this writing) to play with contrib.staticfiles, and now when using the local devserver all my admin media returns a 404. The static media (as managed by ...
4
votes
3answers
1k views
django: failing tests from django.contrib.auth
When I run my django test I get following errors, that are outside of my test suite:
======================================================================
ERROR: test_known_user ...
0
votes
1answer
673 views
Django comments framework
Hi I am quite new to Django and am trying to get to grips with a few things.
I would like to know if the comments framework that is bundled with django can redirect to the refering page if the ...