Changes between Version 1 and Version 2 of Ticket #25396, comment 8


Ignore:
Timestamp:
Sep 14, 2015, 2:07:14 PM (9 years ago)
Author:
Piotr Roszatycki

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25396, comment 8

    v1 v2  
    1919        verbose_name_plural = 'categories'
    2020
    21     def __unicode__(self):
    22         return self.name
    23 
    2421
    2522class Note(models.Model):
     
    3027    date = models.DateTimeField()
    3128    content = models.TextField(max_length=50000)
    32 
    33     def __unicode__(self):
    34         return self.title
    3529
    3630
Back to Top