{% for user in user_list %}
{% if user.user %}
{% include "cri_frontend/_user_list_table_item.html" with user=user.user photo=photos|get_item:user.user.username %}
{% else %}
{% include "cri_frontend/_user_list_table_item.html" with user=user photo=photos|get_item:user.username %}
{% endif %}
{% endfor %}
{% for user in user_list %}
{% if user.user %}
{% include "cri_frontend/_user_list_picture_item.html" with user=user.user photo=photos|get_item:user.user.username %}
{% else %}
{% include "cri_frontend/_user_list_picture_item.html" with user=user photo=photos|get_item:user.username %}
{% endif %}
{% endfor %}