Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def get_main_photo(self):
- model_photos = Photo.objects.filter(model=self.id)
- if len(model_photos) == 0:
- return 'images/no_image.jpg' <-- Путь относительно папки со статикой
- return model_photos[0].img.url
Add Comment
Please, Sign In to add comment