{% extends 'dashboard/layout.html' %} {% load i18n %} {% load currency_filters %} {% load wfrs_filters %} {% block title %} {% trans "Pre-Qualification Inquiries" %} | {% trans "Wells Fargo" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "Pre-Qualification Inquiry Details" %} {% endblock %} {% block dashboard_content %}

{% trans "Pre-Qualification Request Details" %}

{% trans "UUID" %} {{ object.uuid }}
{% trans "Merchant" %} {{ object.credentials.name }} ({{ object.credentials.merchant_num }})
{% trans "Customer Initiated" %} {% if object.customer_initiated %} {% trans "Yes (PREQUAL)" %} {% else %} {% trans "No (PRESCREEN)" %} {% endif %}
{% trans "Locale" %} {{ object.locale_name }}
{% trans "Entry Point" %} {{ object.entry_point_name }}
{% trans "Status" %} {{ object.status_name }}
{% trans "IP Address" %} {{ object.ip_address }}
{% trans "Created Date" %} {{ object.created_datetime }}
{% trans "Modified Date" %} {{ object.modified_datetime }}

{% trans "Pre-Qualification Customer Details" %}

{% trans "Email" %} {{ object.email | default:'—' }}
{% trans "First Name" %} {{ object.first_name }}
{% trans "Middle Initial" %} {{ object.middle_initial | default:'—' }}
{% trans "Last Name" %} {{ object.last_name }}
{% trans "Address Line 1" %} {{ object.line1 }}
{% trans "Address Line 2" %} {{ object.line1 | default:'—' }}
{% trans "City" %} {{ object.city }}
{% trans "State" %} {{ object.state }}
{% trans "Postal Code" %} {{ object.postcode }}
{% trans "Phone" %} {{ object.phone.as_international | default:'—' }}

{% trans "Pre-Qualification Response Details" %}

{% if object.response %} {% else %} {% endif %}
{% trans "Status" %} {{ object.response.status_name }} ({{ object.response.status }})
{% trans "Message" %} {{ object.response.message }}
{% trans "Offer Indicator" %} {{ object.response.offer_indicator }}
{% trans "Pre-Qualified Credit Limit" %} {{ object.response.credit_limit | currency }}
{% trans "Unique Response ID" %} {{ object.response.response_id }}
{% trans "Customer Response" %} {{ object.response.customer_response_name | default:"—" }}
{% trans "Reported Date" %} {{ object.response.reported_datetime | default:"—" }}
{% trans "Created Date" %} {{ object.response.created_datetime }}
{% trans "Modified Date" %} {{ object.response.modified_datetime }}
{% trans "Pre-qualified offer was not returned by Wells Fargo for this consumer." %}

{% trans "SDK Credit Application Results" %}

{% if object.response and object.response.sdk_application_result %} {% else %} {% endif %}
{% trans "Application ID" %} {{ object.response.sdk_application_result.application_id }}
{% trans "First Name" %} {{ object.response.sdk_application_result.first_name }}
{% trans "Last Name" %} {{ object.response.sdk_application_result.last_name }}
{% trans "Application Status" %} {{ object.response.sdk_application_result.application_status }}
{% trans "Created Date" %} {{ object.response.sdk_application_result.created_datetime }}
{% trans "Modified Date" %} {{ object.response.sdk_application_result.modified_datetime }}
{% trans "This consumer did not complete the Wells Fargo Credit Application." %}

{% trans "Resulting Order Details" %}

{% if object.resulting_order %} {% else %} {% endif %}
{% trans "Order Number" %} {{ object.resulting_order.number }}
{% trans "Order Total" %} {{ object.resulting_order.total_excl_tax | currency }}
{% trans "Time until Order Placement (Minutes)" %} {{ object.resulting_order.date_placed | timesinceminutes:object.created_datetime }}
{% trans "Order Merchant Name" %} {{ object.response.order_merchant_name | default:'—' }}
{% trans "This consumer did not place an order." %}
{% endblock %}