from django.db import models from django.contrib.auth.models import User class AuthURL( models.Model) : user = models.ForeignKey( User ) auth_url = models.URLField(help_text="URL used to auth with OpenID" ) def __str__(self): return self.auth_url