{% extends "base-apply.html" %} {% load bleach_tags i18n approval_tools %} {% user_can_edit_project object request.user as editable %} {% block title %}{% trans "Contracting Information for" %} {{ project.title }} {% endblock %} {% block content %}
{% trans "View project page" %}

{% trans "Contracting Information for" %} {{ project.title }}

{% trans "Last Updated" %}: {{ vendor.updated_at|date:'DATE_FORMAT' }}
{% if editable %}
{% trans "Edit" %}
{% endif %}
{% for group in vendor_detailed_response.values %} {% if group.title %}

{{ group.title|bleach }}

{% endif %} {% for question, answer in group.questions %}
{{ question }}
{% if question == 'Due Diligence Documents' %}
{% for document in due_diligence_documents %}

{{ document.document.name }}

{% endfor %}
{% else %}

{% if answer == True or answer == False %}{{ answer|yesno:"Yes,No" }}{% else %}{% if answer %}{{ answer|bleach }}{% else %}-{% endif %}{% endif %}

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