Guest User

Untitled

a guest
Apr 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class Category(models.Model):
  2. title = models.CharField(max_length=150)
  3.  
  4. def __unicode__(self):
  5. return self.title
  6.  
  7. class Meta:
  8. unique = True
  9. verbose_name = u'Категория'
  10. verbose_name_plural = u'Категории'
Add Comment
Please, Sign In to add comment