1
0
mirror of https://github.com/krislamo/DJ-BaseSite synced 2025-09-11 21:49:28 +00:00

First Commit

This commit is contained in:
2012-10-13 07:35:48 -07:00
commit 80cdb11749
33 changed files with 1385 additions and 0 deletions

View File

View File

@@ -0,0 +1,7 @@
from django.db import models
from django.contrib.auth.models import User
class UserProfile(models.Model):
user = models.ForeignKey(User, unique=True)
activated = models.BooleanField()
activatekey = models.CharField(max_length=25, blank=True)