Update translations

This commit is contained in:
2020-05-15 10:31:22 +02:00
parent ee706cfe0f
commit 536dbf3d65
28 changed files with 1184 additions and 577 deletions

View File

@@ -6,6 +6,11 @@ from apps.hospital.models import Hospital
# Create your models here.
class Polyclinic(MetaDataModel):
class Meta:
verbose_name = _('Polyclinic')
verbose_name_plural = _('Polyclinics')
hospital = models.ForeignKey(Hospital, on_delete=models.CASCADE, help_text=_('To which hospital belongs this polyclinic'))
name = models.CharField(_('Name'), max_length=200, blank=True, help_text=_('The name of this polyclinic'))
phone = models.CharField(_('Phone number'), max_length=18, blank=True, help_text=_('The general/direct phone number of this polyclinic'))