Added Total SP field calculated during API runs

This commit is contained in:
2010-04-20 14:04:54 +01:00
parent e2dce0aed4
commit 98e10b1952
6 changed files with 31 additions and 8 deletions

View File

@@ -73,6 +73,8 @@ class EVEPlayerCharacter(EVEAPIModel):
attrib_charisma = models.IntegerField("Charisma", blank=True, null=True)
attrib_perception = models.IntegerField("Perception", blank=True, null=True)
attrib_willpower = models.IntegerField("Willpower", blank=True, null=True)
total_sp = models.IntegerField("Total SP", blank=True, null=True)
objects = EVEPlayerCharacterManager()