File "orders.twig"

Full Path: /home/cananyalcin/public_html/core/temp/client/united/orders.twig
File size: 5.35 KB
MIME-type: text/html
Charset: utf-8

{% include 'header.twig' %}

<div class="container-fluid">
  <div class="row">
    <div class="col-lg-12">
  	    <ul class="nav nav-pills ">
        <li {% if 'all' == status %}  class="active" {% endif %} ><a  class="nav-link nav-link-btn theme-bg" href="orders">{{ lang['orders.status.all'] }}</a></li>
        <li {% if 'pending' == status %}  class="active" {% endif %}><a  class="nav-link nav-link-btn theme-bg" href="orders/pending">{{ lang['orders.status.pending'] }}</a></li>
        <li {% if 'inprogress' == status %}  class="active" {% endif %}><a  class="nav-link nav-link-btn theme-bg" href="orders/inprogress">{{ lang['orders.status.inprogress'] }}</a></li>
        <li {% if 'completed' == status %}  class="active" {% endif %}><a  class="nav-link nav-link-btn theme-bg" href="orders/completed">{{ lang['orders.status.completed'] }}</a></li>
        <li {% if 'partial' == status %}  class="active" {% endif %}><a  class="nav-link nav-link-btn theme-bg" href="orders/partial">{{ lang['orders.status.partial'] }}</a></li>
        <li {% if 'processing' == status %}  class="active" {% endif %}><a  class="nav-link nav-link-btn theme-bg" href="orders/processing">{{ lang['orders.status.processing'] }}</a></li>
        <li {% if 'canceled' == status %}  class="active" {% endif %}><a  class="nav-link nav-link-btn theme-bg" href="orders/canceled">{{ lang['orders.status.canceled'] }}</a></li>
        <li class="pull-right search">
          <form action="" method="get">
            <div class="input-group">
              <input type="text" name="search" class="form-control" value="{{ search }}" placeholder="Siparişleri ara">
              <span class="input-group-btn">
                <button type="submit" class="btn btn-default"><i class="fa fa-search" aria-hidden="true"></i></button>
              </span>
            </div>
          </form>
        </li>
      </ul>
      <div class="well well-float">
        <table class="table ">
          <thead>
            <tr>
              <th>{{ lang['orders.id'] }}</th>
              <th>{{ lang['orders.date'] }}</th>
              <th class="width-40">{{ lang['orders.link'] }}</th>
              <th>{{ lang['orders.charge'] }}</th>
              <th class="nowrap">{{ lang['orders.start.count'] }}</th>
              <th>{{ lang['orders.quantity'] }}</th>
              <th>{{ lang['orders.service'] }}</th>
              <th>{{ lang['orders.status'] }}</th>
              <th>{{ lang['orders.remains'] }}</th>
              <th></th>
              <th></th>
            </tr>
          </thead>
          <tbody>

            {% for order in orders %}
              <tr>
                <td>{{ order['id'] }}</td>
                <td>{{ order['date'] }}</td>
                <td class="width-40">{{ order['link'] }}</td>
                <td>{{ currency['symbol'] }}&nbsp;&nbsp;{{ (order['charge']*currency['value']) }}</td>
                <td class="nowrap">{{ order['start_count'] }}</td>
                <td>{{ order['quantity'] }}</td>
                <td>{{ order['service'] }}</td>
                <td>{{ order['status'] }}</td>
                <td>{{ order['remains'] }}</td>
                <td>
                  {% if order['refillButton'] %}
                   <div class="order-actions">
                    <a href="/orders/refill/{{ order['id'] }}" class="btn btn-xs btn-primary">{{ lang['orders.button.refill'] }}</a>
                   </div> 
                  {% endif %}                
                </td>
                <td>
                  {% if order['cancelButton'] %}
                   <div class="order-actions">
                    <a href="/orders/cancel/{{ order['id'] }}" class="btn btn-xs btn-primary">{{ lang['orders.button.cancel'] }}</a> 
                   </div> 
                  {% endif %}
                </td>
               
              </tr>
            {% endfor %}

          </tbody>
        </table>
      </div>

      {% if pagination["count"] > 1 %}
        <ul class="pagination">

          {% if pagination["current"] != 1 %}
            <li>
              <a href="orders/{{ status }}/{{ pagination["previous"] }}{% if search %}?search={{ search }}{% endif %}" aria-label="Previous">
                <span aria-hidden="true">&laquo;</span>
              </a>
            </li>
          {% endif %}

          {% set r, l = 3, 3 %}

          {% if pagination['current'] == 1 %}
            {% set r = 7 %}
          {% endif %}

          {% if pagination['current'] == 2 %}
            {% set r = 5 %}
          {% endif %}

          {% if pagination['current'] >= pagination['count'] %}
            {% set l = 5 %}
          {% endif %}

          {% for page in 1..pagination["count"] %}
            {% if page >= (pagination['current']-l) and page <= (pagination['current']+r) %}
              <li{% if page == pagination['current'] %} class="active" {%endif%}><a href="orders/{{ status }}/{{ page }}{% if search %}?search={{ search }}{% endif %}">{{ page }}</a></li>
            {%endif%}
          {% endfor %}

          {% if pagination['current'] < pagination['count'] %}
            <li>
              <a href="orders/{{ status }}/{{ pagination['next'] }}{% if search %}?search={{ search }}{% endif %}" aria-label="Next">
                <span aria-hidden="true">&raquo;</span>
              </a>
            </li>
          {% endif %}

        </ul>
      {% endif %}

    </div>
  </div>
</div>


{% include 'footer.twig' %}