Show members not in a region on the all page
This commit is contained in:
		@@ -26,6 +26,27 @@
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            {% endfor %}
 | 
			
		||||
            {% if other %}
 | 
			
		||||
                <div class="row bg-white mb-5">
 | 
			
		||||
                    <div class="col-12 pt-3">
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            {% for attorney in attorneys %}
 | 
			
		||||
                                {% if not attorney.region %}
 | 
			
		||||
                                    <a class="col-3 text-center pt-5" href="{% url 'attorney' attorney.id %}">
 | 
			
		||||
                                        <div>
 | 
			
		||||
                                            <img class="pb-3" src="/media/{{ attorney.image }}"
 | 
			
		||||
                                                 style="width: auto; max-width: 100%; height: 200px"/>
 | 
			
		||||
                                            <h5 class="text-dark-primary">{{ attorney.first_name }} {{ attorney.last_name }}</h5>
 | 
			
		||||
                                            <span class="text-light-primary">{{ attorney.position }}</span>
 | 
			
		||||
                                            <hr>
 | 
			
		||||
                                        </div>
 | 
			
		||||
                                    </a>
 | 
			
		||||
                                {% endif %}
 | 
			
		||||
                            {% endfor %}
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            {% endif %}
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user