So I have a class, Y, that is a profile extending User.
I have another class, X, that has a one-to-one relationship with class Y:
class X(models.Model):
y = models.ForeignKey('class Y')
Given that I have access to a user object, how do I get to the X associated with it?