Name for language

This commit is contained in:
Michal Čihař 2012-02-27 16:14:36 +01:00
parent 00f8eca6f8
commit 7e5a53e977

View File

@ -5,3 +5,6 @@ class Language(models.Model):
name = models.CharField(max_length = 100)
nplurals = models.SmallIntegerField(default = 0)
pluralequation = models.CharField(max_length = 255, blank = True)
def __unicode__(self):
return self.name