Update translations
This commit is contained in:
@@ -5,6 +5,11 @@ from lib.models.base import MetaDataModel
|
||||
|
||||
# Create your models here.
|
||||
class Hospital(MetaDataModel):
|
||||
|
||||
class Meta:
|
||||
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'))
|
||||
postal_code = models.CharField(_('Postal code'), max_length=10, blank=True, help_text=_('The postal code of this hospital'))
|
||||
|
||||
Reference in New Issue
Block a user