Closed kitsunde closed 11 years ago
Django 1.5 has pluggable user models (yay) so we will stop using profile completely. The current state is pretty ugly doing:
profile = request.user.get_profile() profile.facebook
rather than just:
request.user.facebook
Currently it also requires us to figure out what the UserProfile name is and doing a rather ugly text construction to do a join on it.
This is fixed in the 1.5 branch.
Django 1.5 has pluggable user models (yay) so we will stop using profile completely. The current state is pretty ugly doing:
rather than just:
Currently it also requires us to figure out what the UserProfile name is and doing a rather ugly text construction to do a join on it.