datatracker/ietf/templates/stats/includes/number_with_details_cell.html
2020-01-03 21:50:24 +00:00

9 lines
420 B
HTML

{% if content_limit and count <= content_limit %}
{% for n in names %}
<a href="{% url 'ietf.person.views.profile' email_or_name=n %}">{{ n }}</a><br>
{% endfor %}
{% else %}
{# <a class="popover-details" href="" data-elements="{% for n in names|slice:":20" %}{{ n }}{% if not forloop.last %}|{% endif %}{% endfor %}" data-sliced="{% if count > 20 %}1{% endif %}">{{ count }}</a> #}
{{ count }}
{% endif %}