Created
February 7, 2023 02:00
-
-
Save KabakiAntony/5c3fc8a6defb5c0d9a59c299fee204ad to your computer and use it in GitHub Desktop.
size model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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