{{ profile }}
|
{% if profile.contributor %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %}
|
{% for email in profile.emails.all %}
{% if email.primary %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-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 }} |
{% empty %}
{% include "bi/x-circle-fill.html" %}
|
{% include "bi/x-circle-fill.html" %}
|
{% include "bi/x-circle-fill.html" %}
|
Add new email address
|
{% endfor %}
|
{% if profile.accepts_refereeing_requests %}
{% include "bi/check-circle-fill.html" %}
{% else %}
{% include "bi/x-circle-fill.html" %}
{% endif %}
|
{% if not profile.accepts_refereeing_requests %}
This person does not accept refereeing requests
{% elif not profile.emails.all %}
Cannot send an invitation without an email.
{% elif profile.contributor and not profile.contributor.is_currently_available %}
This person is not currently available, but will be after
{% else %}
{% 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 %}