Merge branch 'master' of dev.camin.us:www

Conflicts:
	profiles/models.py
	profiles/views.py
	templates/base_full.html
This commit is contained in:
Trever Fischer
2012-03-04 23:22:47 -05:00
10 changed files with 51 additions and 34 deletions

View File

@@ -54,6 +54,6 @@ class MOTD(models.Model):
def create_profile(sender, instance, created, **kwargs):
if created:
MinecraftProfile.objects.create(user=instance)
MinecraftProfile.objects.create(user=instance, mc_username=instance.username)
post_save.connect(create_profile, sender=User)