/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
class Category(models.Model): category_title = models.CharField(max_length=200) def __unicode__(self): return self.category_title
URL: http://affix.me