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

{{ object.project.title }}

View report

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

{% if report.skipped %}

Report Skipped

{% else %}

Public Report

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

Private Report

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

Attachements

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