Skip to content

Instantly share code, notes, and snippets.

@KabakiAntony
Created February 7, 2023 02:00
Show Gist options
  • Select an option

  • Save KabakiAntony/5c3fc8a6defb5c0d9a59c299fee204ad to your computer and use it in GitHub Desktop.

Select an option

Save KabakiAntony/5c3fc8a6defb5c0d9a59c299fee204ad to your computer and use it in GitHub Desktop.
size model
class Size(models.Model):
title = models.CharField(max_length=20)
def __str__(self):
return self.title
class Meta:
verbose_name_plural = "Sizes"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment