datatracker/ietf/templates/stats/includes/number_with_details_cell.html
Lars Eggert 9a21fca6c1 More bs5 templates
- Legacy-Id: 19715
2021-11-30 14:42:13 +00:00

16 lines
393 B
HTML

{# bs5ok #}
{% 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 %}