Inheritance diagram for dataplot::soccer::models::Team:
Public Member Functions | |
def | export |
def | summary |
def | scores_ordered |
def | cache |
def | other_team |
def | save |
def | __str__ |
Public Attributes | |
other | |
Static Public Attributes | |
tuple | name = models.CharField(max_length=100) |
tuple | game = models.ForeignKey(Game) |
tuple | goals = models.IntegerField(blank=True,null=True) |
tuple | own_goals = models.IntegerField(blank=True,null=True) |
tuple | points = models.IntegerField(blank=True,null=True) |
tuple | won = models.BooleanField(blank=True,null=False,default=False) |
tuple | tied = models.BooleanField(blank=True,null=False,default=False) |
tuple | players = models.IntegerField(blank=True,null=True) |
Classes | |
class | Admin |
Definition at line 321 of file models.py.
|
|
|
|
|
|
|
|
|
Save method which allows for maximum configurability. On a model with no custom save method, we will call django's save first, then try to make plots for this object. On a model with a custom save method, you should call make_plots and Model.save yourself, depending on when it is appropriate in terms of your data processing. Reimplemented from dataplot::plotmodels::Model. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|