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

@@ -6,7 +6,7 @@ class CurrencyAccount(models.Model):
profile = models.OneToOneField(MinecraftProfile)
username = models.CharField(max_length=255, unique=True, null=True)
balance = models.FloatField(default=3000)
status = models.IntegerField()
status = models.IntegerField(default=0)
def __unicode__(self):
return self.username