{{ header }}
<div id="container" class="container j-container oc-newsletter">
  <ul class="breadcrumb">
    {% for breadcrumb in breadcrumbs %}
      <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
    {% endfor %}
  </ul>
  {% if success %}
    <div class="alert alert-success alert-dismissible success"><i class="fa fa-check-circle"></i> {{ success }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
  {% endif %}
  {% if error_warning %}
    <div class="alert alert-danger alert-dismissible warning"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
  {% endif %}
  <div class="row">{{ column_left }}{{ column_right }}
    {% if column_left and column_right %}
      {% set class = 'col-sm-6' %}
    {% elseif column_left or column_right %}
      {% set class = 'col-sm-9' %}
    {% else %}
      {% set class = 'col-sm-12' %}
    {% endif %}
    <div id="content" class="{{ class }}">{{ content_top }}
      <h1 class="heading-title">{{ heading_title }}</h1>
      <table class="table table-bordered table-hover list">
        <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 list">
        <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 list">
          <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 list">
          <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 %}
        <h2 class="secondary-title">{{ text_history }}</h2>
        <table class="table table-bordered table-hover list">
          <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">{{ button_continue }}</a></div>
      </div>
      {{ content_bottom }}</div>
  </div>
</div>
{{ footer }}
