Model for languages

This commit is contained in:
Michal Čihař 2012-02-27 10:22:33 +01:00
parent 84c5996893
commit f67437c27d

View File

@ -1,3 +1,7 @@
from django.db import models
# Create your models here.
class Language(models.Model):
code = models.SlugField(db_index = True)
name = models.CharField(max_length = 100)
nplurals = models.SmallIntegerField(default = 0)
pluralequation = models.CharField(max_length = 255, blank = True)