1👍
Mabye the failing images have filenames that contain non-ascii characters?
Change __str__
to __unicode__
(edited for markdown)
0👍
Change
def __str__(self):
return self.title
to
def __unicode__(self):
return self.title
- [Answer]-Django – Registration form default value of fields
- [Answer]-Using AngularJS template tag inside Django {% %} tag
Source:stackexchange.com