{% extends "base-apply.html" %} {% load i18n static bleach_tags %} {% block title %}{% trans "Report" %} | {{ object.project.title }}{% endblock %} {% block body_class %}{% endblock %} {% block content %}
{% trans "View project page" %}

{{ object.project.title }}

{% trans "View report" %}

{% trans "This report is for the period" %} {{ report.start_date }} {% trans "to" %} {{ report.end_date }}

{% if report.skipped %}

{% trans "Report Skipped" %}

{% else %}

{% trans "Public Report" %}

{{ object.current.public_content|bleach|safe }}

{% trans "Private Report" %}

{{ object.current.private_content|bleach|safe }}
{% for file in object.current.files.all %} {% if forloop.first %}

{% trans "Attachements" %}

{% endif %} {% endfor %} {% endif %}
{% endblock %}