{% extends 'UserPortalBundle:layout:frontend.html.twig' %} {% block pageTitle %} {{ 'Northgate | View Request'|trans}} {% endblock %} {% block content %} {{ request['templateName'] | title }} - {{ request['size'] }} {% include 'UserPortalBundle:includes:breadcrumbs.html.twig' with {'pageName':request['templateName']} %} {{ request['createdDate']| date('M j, Y g:ia') }} {{ '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 %} {{ 'UPC'|trans}} {{ 'Qty'|trans}} {% for upc,qty in upcQtyArr %} {{upc}} {{qty}} {% endfor %} {% endif %} {% if tagHtml %} {{ tagHtml | raw }} {% endif %} {% if upcQtyArr | length == 0 %} {{ 'Qty'|trans}} {% endif %} {{ 'Cancel'|trans }} {% endblock %}