{% load person_filters %}{% if content_limit and count <= content_limit %}
{% for n in names %}
{% with n|person_by_name as person %}
{% if person %}
{{ n }}
{% else %}
{{ n }}
{% endif %}
{% endwith %}
{% endfor %}
{% else %}
{# {{ count }} #}
{{ count }}
{% endif %}