{% 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:"-" }}
{% trans "Sent to Compliance" %}
{{ object.sent_to_compliance_at|date:"DATE_FORMAT" }}
{{ 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" %}
{% for packet_file in object.packet_files.all %}
{% endfor %}