{% extends 'UserPortalBundle:layout:frontend.html.twig' %} {% block pageTitle %} {{ 'Northgate | View Request'|trans}} {% endblock %} {% block content %}
{{ 'Store' | trans }}: {{ getCommaSeparatedName(request['storeName']) }}
{{ 'Department' | trans }}: {{ getCommaSeparatedName(request['departmentName']) }}
{{ 'Cutoff Day' | trans }}: {% if cutOffDay!='' %} {{ cutOffDay }} {% else %} {{'N/A'|trans}} {%endif%}
{{ 'Printing Date' | trans }}: {% if request['expectedDate'] %} {{ request['expectedDate'] | date('M j, Y') }} {% else %} {{'N/A'|trans}} {%endif%}
{{ 'Tag Type' | trans }}: {{ tagType }}
{{ 'AISLE Information' | trans }}: {% if request['aisleInfo']!= '' %}{{request['aisleInfo']}}{%else%}{{'N/A'}}{%endif%}
{% if upcQtyArr | length > 0 %}
{% for upc,qty in upcQtyArr %} {% endfor %}
{{ 'UPC'|trans}} {{ 'Qty'|trans}}
{{upc}} {{qty}}
{% endif %}
{% if tagHtml %}
{{ tagHtml | raw }}
{% endif %} {% if upcQtyArr | length == 0 %}
{{ 'Qty'|trans}}  
{% endif %}
{% endblock %}