{{ profile }}
|
{% if profile.contributor %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %}
|
{% if profile.accepts_refereeing_requests %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %}
|
{% for profile_email in profile.emails.all %}
{% include "submissions/_hx_select_referee_email_table_row.html" %}
{% empty %}
{% include "bi/x-circle-fill.html" %}
|
{% endfor %}
|
{% if profile.already_invited %}This person has already been invited {% endif %}
{% if not profile.accepts_refereeing_requests %}
This person does not accept refereeing requests
{% endif %}
{% if profile.has_submission_competing_interests %}
This person has a competing interest with the submission
{% endif %}
{% if profile.is_submission_author %}
This person is an author of the submission
{% elif profile.last_name_matches %}
This person could be an author of the submission (last name matches)
{% endif %}
{% if profile.contributor and not profile.contributor.is_currently_available %}
This person is not currently available, but will be after
{% 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 %}