Add name field label to Team model
This commit is contained in:
parent
5e97740f7c
commit
a803c8d96d
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class Organization(models.Model):
|
|||
return u'%s' % (self.name)
|
||||
|
||||
class Team(models.Model):
|
||||
name = models.CharField(max_length=256, null=False, blank=False)
|
||||
name = models.CharField(_("Team Name"), max_length=256, null=False, blank=False)
|
||||
organization = models.ForeignKey(Organization, null=True, blank=True, on_delete=models.CASCADE)
|
||||
|
||||
country = models.ForeignKey(Country, on_delete=models.CASCADE)
|
||||
|
|
Loading…
Reference in a new issue