You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ietf/templates/stats/includes/number_with_details_cell.html
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,13 @@
1
-
{% if content_limit and count <= content_limit %}
1
+
{% load person_filters %}{% if content_limit and count <= content_limit %}
2
2
{% for n in names %}
3
-
<ahref="{% url 'ietf.person.views.profile' email_or_name=n %}">{{ n }}</a><br>
3
+
{% with n|person_by_name as person %}
4
+
{% if person %}
5
+
<ahref="{{ person.get_absolute_url }}">{{ n }}</a>
6
+
{% else %}
7
+
{{ n }}
8
+
{% endif %}
9
+
<br>
10
+
{% endwith %}
4
11
{% endfor %}
5
12
{% else %}
6
13
{# <aclass="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> #}
0 commit comments