Verbose names

This commit is contained in:
Michal Čihař 2012-02-27 11:55:12 +01:00
parent 3ca1050cad
commit 802be0e27f

View File

@ -37,7 +37,7 @@ class SubProject(models.Model):
repo = models.CharField(max_length = 200)
branch = models.CharField(max_length = 50)
filemask = models.CharField(max_length = 200)
style_choices = (('po', 'po'), ('ts', 'ts'))
style_choices = (('po', 'GNU Gettext'), ('ts', 'Qt TS'))
style = models.CharField(max_length = 10, choices = style_choices)
@models.permalink