{% 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
{% if report.skipped %}

Report Skipped

{% else %}

Public

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

Private

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

Files

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