{% load i18n plmapp_tags %} {% if links %}

{% trans links.0.role|capfirst %}

{% for link in links %}
{{link.user.first_name}} {{link.user.last_name}}, {{link.user.username}}, {% with link.user.profile as profile %} {{ profile.rank }}, {% endwith %} {{link.user.is_active|yesno:"active,inactive"}}
{% if can_delete %}
  • {% trans "REPLACE" %}
  • {% if link.role == 'notified' or link.role == 'reader' %}
  • {% csrf_token %}
  • {% endif %}
{% endif %}
{% endfor %}
{% endif %}