Your IP : 3.144.21.158


Current Path : /home/sudancam/.trash/catalog.1/view/template/account/
Upload File :
Current File : /home/sudancam/.trash/catalog.1/view/template/account/download.twig

{{ header }}
<div id="account-download" class="container">
  <ul class="breadcrumb">
    {% for breadcrumb in breadcrumbs %}
      <li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
    {% endfor %}
  </ul>
  <div class="row">{{ column_left }}
    <div id="content" class="col">{{ content_top }}
      <h1>{{ heading_title }}</h1>
      {% if downloads %}
        <div class="table-responsive">
          <table class="table table-bordered table-hover">
            <thead>
              <tr>
                <td class="text-end">{{ column_order_id }}</td>
                <td class="text-start">{{ column_name }}</td>
                <td class="text-start">{{ column_size }}</td>
                <td class="text-start">{{ column_date_added }}</td>
                <td></td>
              </tr>
            </thead>
            <tbody>
              {% for download in downloads %}
                <tr>
                  <td class="text-end">{{ download.order_id }}</td>
                  <td class="text-start">{{ download.name }}</td>
                  <td class="text-start">{{ download.size }}</td>
                  <td class="text-start">{{ download.date_added }}</td>
                  <td><a href="{{ download.href }}" data-bs-toggle="tooltip" title="{{ button_download }}" class="btn btn-primary"><i class="fas fa-cloud-download-alt"></i></a></td>
                </tr>
              {% endfor %}
            </tbody>
          </table>
        </div>
        <div class="row">
          <div class="col-sm-6 text-start">{{ pagination }}</div>
          <div class="col-sm-6 text-end">{{ results }}</div>
        </div>
      {% else %}
        <p>{{ text_no_results }}</p>
      {% endif %}
      <div class="d-inline-block pt-2 pd-2 w-100">
        <div class="float-end"><a href="{{ continue }}" class="btn btn-primary">{{ button_continue }}</a></div>
      </div>
      {{ content_bottom }}</div>
    {{ column_right }}</div>
</div>
{{ footer }}