{% extends "base-apply.html" %} {% load bleach_tags %} {% block title %}Vendor Info for {{ project.title }} {% endblock %} {% block content %}

Vendor Information for {{ project.title }}

Last Updated: {{ vendor.updated_at|date:'F d, Y' }}
Edit
{% 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 %}{% if answer == True %}{{ answer|yesno:"Yes,No" }}{% else %}{{ answer|bleach }}{% endif %}{% else %}-{% endif %}

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