datatracker/ietf/templates/stats/includes/number_with_details_cell.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

15 lines
381 B
HTML

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