Guest User

Untitled

a guest
Jun 17th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. def get_main_photo(self):
  2.     model_photos = Photo.objects.filter(model=self.id)
  3.     if len(model_photos) == 0:
  4.         return 'images/no_image.jpg' <-- Путь относительно папки со статикой
  5.     return model_photos[0].img.url
Add Comment
Please, Sign In to add comment