From ff0462765e2e84e9ce128399912f12e38681f976 Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Fri, 30 Aug 2019 11:05:32 +0200 Subject: [PATCH] Correct bug in profile listing of duplicates (emails) --- profiles/templates/profiles/profile_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/templates/profiles/profile_list.html b/profiles/templates/profiles/profile_list.html index 3483eb659..ab46b247e 100644 --- a/profiles/templates/profiles/profile_list.html +++ b/profiles/templates/profiles/profile_list.html @@ -34,7 +34,7 @@ <li><i class="fa fa-check-circle text-success"></i> No name-duplicate Contributors found</li> {% endif %} {% if nr_contributors_w_duplicate_emails > 0 %} - <li><a href="{% url 'scipost:contributor_duplicates' %}?kind=names">Handle Contributors with duplicate emails ({{ nr_contributors_w_duplicate_emails }} to handle)</a></li> + <li><a href="{% url 'scipost:contributor_duplicates' %}?kind=emails">Handle Contributors with duplicate emails ({{ nr_contributors_w_duplicate_emails }} to handle)</a></li> {% else %} <li><i class="fa fa-check-circle text-success"></i> No email-duplicate Contributors found</li> {% endif %} -- GitLab