You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			601 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			12 lines
		
	
	
		
			601 B
		
	
	
	
		
			HTML
		
	
| {% load static %}
 | |
| {% for connection in connections %}
 | |
| <div class="w-[35px] h-[35px] rounded-full {% if not forloop.first %} -ml-5 {% endif %} ">
 | |
|     {% if connection.user.staffprofile.image %}
 | |
|         <img src="{{ connection.user.staffprofile.image.url }}" class="w-full h-full rounded-full object-cover">
 | |
|     {% else %}
 | |
|         <div class="w-full h-full border border-osiblue bg-osiblue text-white uppercase rounded-full flex justify-center items-center p-1 shadow-md">
 | |
|             {{ connection.user.first_name.0 }}{{ connection.user.last_name.0 }}
 | |
|         </div>
 | |
|     {% endif %}
 | |
| </div>
 | |
| {% endfor %} |