{% extends "base-apply.html" %} {% load i18n static approval_tools %} {% block title %}{{ object.title }}{% endblock %} {% block extra_css %} {{ reviewer_form.media.css }} {% endblock %} {% block body_class %}light-grey-bg{% endblock %} {% block content %}
{% trans "Back to project" %}

{{ object.title }}

{{ object.submission.page }} {{ object.submission.round }} {% trans "Lead" %}: {{ object.lead }}

{% trans "Project Information" %}

{% trans "Proposed start date" %}

{{ object.proposed_start|date:"DATE_FORMAT"|default:"-" }}

{% trans "Project Proposed end date" %}

{{ object.proposed_end|date:"DATE_FORMAT"|default:"-" }}

{% trans "Legal name" %}

{{ object.contact_legal_name|default:"-" }}

{% trans "E-mail" %}

{{ object.contact_email|default:"-" }}

{% trans "Address" %}

{{ object.get_address_display|default:"-"}}

{% trans "Phone" %}

{{ object.phone|default:"-" }}

{% trans "Value" %}

{{ CURRENCY_SYMBOL }}{{ object.value|default:"-" }}

{% if object.sent_to_compliance_at %}
{% trans "Sent to Compliance" %}

{{ object.sent_to_compliance_at|date:"DATE_FORMAT" }}

{% endif %}
{% if object.output_answers %}
{{ object.output_answers }}
{% endif %}

{% trans "Approvals" %}

{% trans "Approver" %}

{% with approval=project.approvals.first %}

{{ approval.by }} - {{ approval.created_at|date:"DATE_FORMAT" }}

{% endwith %}

{% trans "Review" %}

{% trans "Submission lead" %}

{{ project.submission.lead }}

{% trans "Reviews" %}

{% trans "Staff Reviewers" %}
{% for review in project.submission.reviews.by_staff %}
{{ review.author }} {% if review.author.role %} {% trans "as" %} {{ review.author.role }} {% endif %} - {{ review.created_at|date:"DATE_FORMAT" }}
{% empty %} {% trans "No reviews" %} {% endfor %}
{% trans "External Reviewers" %}
{% for review in project.submission.reviews.by_reviewers %}
{{ review.author }} - {{ review.created_at|date:"DATE_FORMAT" }}
{% empty %} {% trans "No reviews" %} {% endfor %}

{% trans "Supporting Documents" %}

{% trans "Submission" %}

{% for packet_file in object.packet_files.all %}

{{ packet_file.title }}

{% endfor %}
{% user_can_update_paf_status object user as user_can_take_actions %} {% if user_can_take_actions %} {% endif %}
{% endblock content %} {% block extra_js %} {{ block.super }} {% endblock %}