Fix multilanguage

This commit is contained in:
2020-05-15 12:54:16 +02:00
parent 1c21979486
commit c1a8912f6d
24 changed files with 221 additions and 149 deletions

View File

@@ -7,8 +7,8 @@ from lib.models.base import MetaDataModel
class Hospital(MetaDataModel):
class Meta:
verbose_name = _('Hospital')
verbose_name_plural = _('Hospitals')
verbose_name = _('hospital')
verbose_name_plural = _('hospitals')
name = models.CharField(_('Name'), max_length=200, help_text=_('The name of this hospital'))
address = models.CharField(_('Address'), max_length=200, blank=True, help_text=_('The address of this hospital'))