{{ header }} 
{% include 'fastor/template/new_elements/wrapper_top.twig' %}

<table class="table table-bordered table-hover">
  <thead>
    <tr>
      <td class="text-left" colspan="2">{{ text_order_detail }}</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td class="text-left" style="width: 50%;">{% if invoice_no %} <b>{{ text_invoice_no }}</b> {{ invoice_no }}<br />
        {% endif %} <b>{{ text_order_id }}</b> #{{ order_id }}<br />
        <b>{{ text_date_added }}</b> {{ date_added }}</td>
      <td class="text-left" style="width: 50%;">{% if payment_method %} <b>{{ text_payment_method }}</b> {{ payment_method }}<br />
        {% endif %}
        {% if shipping_method %} <b>{{ text_shipping_method }}</b> {{ shipping_method }} {% endif %}</td>
    </tr>
  </tbody>
</table>
<table class="table table-bordered table-hover">
  <thead>
    <tr>
      <td class="text-left" style="width: 50%; vertical-align: top;">{{ text_payment_address }}</td>
      {% if shipping_address %}
      <td class="text-left" style="width: 50%; vertical-align: top;">{{ text_shipping_address }}</td>
      {% endif %} </tr>
  </thead>
  <tbody>
    <tr>
      <td class="text-left">{{ payment_address }}</td>
      {% if shipping_address %}
      <td class="text-left">{{ shipping_address }}</td>
      {% endif %} </tr>
  </tbody>
</table>
<div class="table-responsive">
  <table class="table table-bordered table-hover">
    <thead>
      <tr>
        <td class="text-left">{{ column_name }}</td>
        <td class="text-left">{{ column_model }}</td>
        <td class="text-right">{{ column_quantity }}</td>
        <td class="text-right">{{ column_price }}</td>
        <td class="text-right">{{ column_total }}</td>
        {% if products %}
        <td style="width: 20px;"></td>
        {% endif %} </tr>
    </thead>
    <tbody>
    
    {% for product in products %}
    <tr>
      <td class="text-left">{{ product.name }}
        {% for option in product.option %} <br />
        &nbsp;<small> - {{ option.name }}: {{ option.value }}</small> {% endfor %}</td>
      <td class="text-left">{{ product.model }}</td>
      <td class="text-right">{{ product.quantity }}</td>
      <td class="text-right">{{ product.price }}</td>
      <td class="text-right">{{ product.total }}</td>
      <td class="text-right" style="white-space: nowrap;">{% if product.reorder %} <a href="{{ product.reorder }}" data-toggle="tooltip" title="{{ button_reorder }}" class="btn btn-primary"><i class="fa fa-shopping-cart"></i></a> {% endif %} <a href="{{ product.return }}" data-toggle="tooltip" title="{{ button_return }}" class="btn btn-danger"><i class="fa fa-reply"></i></a></td>
    </tr>
    {% endfor %}
    {% for voucher in vouchers %}
    <tr>
      <td class="text-left">{{ voucher.description }}</td>
      <td class="text-left"></td>
      <td class="text-right">1</td>
      <td class="text-right">{{ voucher.amount }}</td>
      <td class="text-right">{{ voucher.amount }}</td>
      {% if products %}
      <td></td>
      {% endif %} </tr>
    {% endfor %}
      </tbody>
    
    <tfoot>
    
    {% for total in totals %}
    <tr>
      <td colspan="3"></td>
      <td class="text-right"><b>{{ total.title }}</b></td>
      <td class="text-right">{{ total.text }}</td>
      {% if products %}
      <td></td>
      {% endif %} </tr>
    {% endfor %}
      </tfoot>
    
  </table>
</div>
{% if comment %}
<table class="table table-bordered table-hover">
  <thead>
    <tr>
      <td class="text-left">{{ text_comment }}</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td class="text-left">{{ comment }}</td>
    </tr>
  </tbody>
</table>
{% endif %}
{% if histories %}
<h3>{{ text_history }}</h3>
<table class="table table-bordered table-hover">
  <thead>
    <tr>
      <td class="text-left">{{ column_date_added }}</td>
      <td class="text-left">{{ column_status }}</td>
      <td class="text-left">{{ column_comment }}</td>
    </tr>
  </thead>
  <tbody>
  
  {% if histories %}
  {% for history in histories %}
  <tr>
    <td class="text-left">{{ history.date_added }}</td>
    <td class="text-left">{{ history.status }}</td>
    <td class="text-left">{{ history.comment }}</td>
  </tr>
  {% endfor %}
  {% else %}
  <tr>
    <td colspan="3" class="text-center">{{ text_no_results }}</td>
  </tr>
  {% endif %}
    </tbody>
  
</table>
{% endif %}
<div class="buttons clearfix">
  <div class="pull-right"><a href="{{ continue }}" class="btn btn-primary">{{ button_continue }}</a></div>
</div>
      
{% include 'fastor/template/new_elements/wrapper_bottom.twig' %}
{{ footer }}