Skip to content
Snippets Groups Projects
Verified Commit eaf4fd1b authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Make official name of school translatable. Closes #95.

parent 6e814540
No related branches found
No related tags found
1 merge request!54Make official name of school translatable. Closes #95.
......@@ -18,7 +18,7 @@ class School(models.Model):
"""
name = models.CharField(verbose_name=_('Name'), max_length=30)
name_official = models.CharField(verbose_name=('Official name'), max_length=200, help_text=_(
name_official = models.CharField(verbose_name=_('Official name'), max_length=200, help_text=_(
'Official name of the school, e.g. as given by supervisory authority'))
logo = ImageCropField(verbose_name=_('School logo'), blank=True, null=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment