{% extends "base-apply.html" %} {% load nh3_tags i18n approval_tools heroicons %} {% user_can_edit_project object request.user as editable %} {% block title %}{% trans "Contracting Information for" %} {{ project.title }} {% endblock %} {% block content %} {% adminbar %} {% slot back_link %} {% trans "View project page" %} {% endslot %} {% slot header %}{% trans "Contracting Information for" %} {{ project.title }}{% endslot %} {% endadminbar %}
{% trans "Last Updated" %}: {{ vendor.updated_at|date:'DATE_FORMAT' }}
{% if editable %}
{% heroicon_micro "pencil-square" class="inline me-1" aria_hidden=true %} {% trans "Edit" %}
{% endif %}
{% for group in vendor_detailed_response.values %} {% if group.title %}

{{ group.title|nh3 }}

{% 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|nh3 }}{% else %}-{% endif %}{% endif %}

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