Skip to content

Instantly share code, notes, and snippets.

@goltsevnet
Created October 30, 2018 08:17
Show Gist options
  • Select an option

  • Save goltsevnet/3ff0589e55a4964136fed99780a53890 to your computer and use it in GitHub Desktop.

Select an option

Save goltsevnet/3ff0589e55a4964136fed99780a53890 to your computer and use it in GitHub Desktop.
class Species(models.Model):
class Meta:
verbose_name = 'Вид'
verbose_name_plural = 'Вид'
species = models
class Genus(models.Model):
class Meta:
verbose_name = 'Род'
verbose_name_plural = 'Род'
species = models
class InsectFamily(models.Model):
class Meta:
verbose_name = 'Семейство'
verbose_name_plural = 'Семейство'
class Insect(models.Model):
class Meta:
verbose_name = 'Насекомое'
verbose_name_plural = 'насекомое'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment