{{ profile }}
|
{% if profile.contributor %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %}
|
{% comment %} {% if profile.email %}
{% include "bi/check-circle-fill.html" %} {{ profile.email }}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %} {% endcomment %}
{% if profile.email %}
{% for email in profile.emails.all %}
{% if email.primary %}
{% include "bi/check-circle-fill.html" %}
{% endif %}
|
{% if email.still_valid %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %}
|
{% if email.verified %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/question-circle-fill.html" %}
{% endif %}
|
{{ email.email }} |
{% endfor %}
{% endif %}
|
{% if profile.accepts_refereeing_requests %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %}
|
{% if profile.accepts_refereeing_requests %}
{% if profile.email %}
Send refereeing invitation with or without auto-reminders.
{% include "submissions/_refinv_auto_reminders_tooltip.html" %}
{% else %}
Cannot send an invitation without an email.
Add one here!
{% endif %}
{% else %}
This person does not accept refereeing requests
{% endif %}
|
{% with profile.responsiveness_as_referee as stats %}
{% if stats.sent %}
{% include "bi/arrow-return-right.html" %}
Responsiveness (last 5 years) --
Sent: {{ stats.sent }},
Accepted: {{ stats.accepted }},
Declined: {{ stats.declined }},
Cancelled: {{ stats.cancelled }},
Fulfilled: {{ stats.fulfilled }}
|
{% endif %}
{% endwith %}