This is my model:
class Meeting(models.Model):
start_time = models.TimeField(null=True)
def __unicode__(self):
return u'%s' % (str(self.start_time))
When I do Meeting.objects.all()
I get
TypeError: not all arguments converted during string formatting
Hopefully this is an easy question! Thanks a lot :)