Initial commit

This commit is contained in:
2012-07-08 16:23:39 +02:00
commit 46f9d19def
316 changed files with 47583 additions and 0 deletions

8
UserProfile.py Normal file
View File

@@ -0,0 +1,8 @@
from django.contrib.auth.models import User
class UserProfile(models.Model):
# This field is required.
user = models.OneToOneField(User)
# Other fields here
editor = models.CharField(max_length=20, default="TinyMCE")