{% set page_group = "customer" %} {% include 'components/head.html' %}
{% include 'components/nav-account.html' %}
{% include 'components/alerts.html' %}
{% if not fiveStarsInfo.account.name == "Unknown" %}
FiveStars Data: {{fiveStarsInfo.account.name}}
{% else %}
FiveStars Data: {{fiveStarsInfo.account.phoneFormatted}}
{% endif %}

FiveStars Data:

Name: {{ fiveStarsInfo.account.name }}

Email: {{ fiveStarsInfo.account.email }}

Phone: {{ fiveStarsInfo.account.phoneFormatted }}

Birthday: {{ fiveStarsInfo.account.birthday }}

Current Points: {{ fiveStarsInfo.points }}

Lifetime Points: {{ fiveStarsInfo.lifetime_points }}

{% if not customerData.customer.name == "" %}
BuyerKiosk Data: {{ customerData.customer.name }}
{% else %}
BuyerKiosk Data: (Not Found In System)
{% endif %}

: {{ customerData.customer.email }}

: {{ customerData.customer.phone }}

: {{ customerData.customer.driversLicense[:2] }} ********** {{ customerData.customer.driversLicense[-4:] }}

{{ customerData.customer.address }} 
{{ customerData.customer.city }}, {{ customerData.customer.state }} {{ customerData.customer.zipcode }}

{% if customerData.customer.onSMS == 1 %}

On SMS List

{% else %}

Not On SMS List:

{% endif %} {% if customerData.customer.onEmail == 1 %}

On Email List

{% else %}

Not On Email List

{% endif %}
First Seen:

{{ customerData.customer.dateAdded }}

Last Seen:

{{ customerData.customer.lastSeen }}

Buys in the Last 30 Days:

{{ customerData.customer.last30 }}

Buyer Alerts
{% if customerAlert|length > 0 %}
{% for alert in customerAlert %} {% endfor %}
Type Comment Date Added Actions
{% if alert.class=='danger' %} NO BUY{% elseif alert.class=='warning' %} Warning{% elseif alert.class=='green' %} Positive{%else%} Info{%endif%} {{alert.comment}} {{alert.dateAdded}}
{% else %}
{% endif %}

Buy Visits

{% for buy in customerData.buyData %} {% if buy.textSent == 1 %} {% else %} {% endif %} {% endfor %}
Buy ID Daily Num Date Time Containers Text Sent Buyer
{{ buy.buyID }} {{ buy.dailyNum }} {{ buy.date }} {{ buy.time }} {{ buy.containers }}
{{ buy.buyerName }}
{% include 'components/footer.html' %}