{% extends 'events/papers/emails/base.html' %} {% block subject_message %}{% trans %}Paper assessment{% endtrans %}{% endblock %} {% block header_subtitle %}{% trans %}Paper assessment{% endtrans %}{% endblock %} {% block header_subtitle_ref %}{% trans id=contribution.friendly_id %}ref #{{ id }}{% endtrans %}{% endblock %} {% block content_header %}

{% trans name=receiver.first_name %}Dear {{name }},{% endtrans %}

{% if paper.state.name == 'accepted' %}

{% trans strong=''|safe, endstrong=''|safe, title=contribution.title -%} Your paper {{ strong }}{{ title }}{{ endstrong }} has been {{ strong }}accepted{{ endstrong }}! {%- endtrans %}

{% trans %}No further actions are required.{% endtrans %}

{% elif paper.state.name == 'rejected' %}

{% trans strong=''|safe, endstrong=''|safe, title=contribution.title -%} Your paper {{ strong }}{{ title }}{{ endstrong }} has been {{ strong }}rejected{{ endstrong }}. {%- endtrans %}

{% trans %}No further actions are required.{% endtrans %}

{% else %}

{% trans strong=''|safe, endstrong=''|safe, title=contribution.title -%} A judge has requested some {{ strong }}changes{{ endstrong }} to your paper {{ strong }}{{ title }}{{ endstrong }}. {%- endtrans %}

{% endif %} {% endblock %} {% block content_body %} {% if paper.judgment_comment %}
{% trans %}Comment:{% endtrans %}
{{- paper.judgment_comment -}}
{% endif %} {% endblock %} {% block content_footer %} {% if paper.state.name == 'to_be_corrected' %}

{% trans %}You may apply the modifications to your paper and submit the modified version (together with any additional files) for review.{% endtrans %}

{% trans %}In order to do that please proceed to your paper page:{% endtrans %}

{% else %}

{% trans %}To see your paper please use the following link:{% endtrans %}

{% endif %}

{{- url_for('papers.paper_timeline', contribution, _external=true) -}}

{% endblock %}