Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. # views.py
  2. profiles = UserProfile.objects.select_related('user').filter(user__in=[1,6,7,8])
  3.  
  4.  
  5. # template.html
  6. {% for user in profiles %}
  7. <li>
  8. <a href="">
  9. {% if user.photo %}
  10. <img src="{{ user.photo.thumbnail.url }}" alt="" />
  11. {% else %}
  12. <img src="{{ MEDIA_URL }}images/lay-avatar.png" alt="" title="" />
  13. {% endif %}
  14. </a>
  15. </li>
  16. {% endfor %}
Add Comment
Please, Sign In to add comment