You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
709 B

{% load i18n thumbnail %}
<ul class="people-items list-unsltyled list-inline">
{% for person in people %}
<li class="people-item">
{% if person.visual %}
<p class="people-visual">
{% if instance.show_links %}<a href="{{ person.get_absolute_url }}">{% endif %}
<img src="{% thumbnail person.visual 120x150 crop subject_location=person.visual.subject_location quality=100 %}" alt="{{ person.name }}" />
{% if instance.show_links %}</a>{% endif %}
</p>
{% endif %}
<h5>{{ person.name }}</h5>
<h6>{{ person.function }}</h6>
</li>
{% endfor %}
</ul>