EDD Shop Administration

File Payment ID Product User

Page markup

  <ul class="nav nav-tabs">
    <li class="nav-item"><a class="nav-link active" href="?active=download_logs">Download Logs</a></li>
  </ul>

  <div class="tab-content">

  <div id="download_logs" class="tab-pane fade-in active">
    <table class="table">
      <thead>
        <th>File</th>
        <th>Payment ID</th>
        <th>Product</th>
        <th>User</th>
      </thead>
      <tbody>
        <Loop type=edd_download_log>
          <tr>
            <td><Field file /></td>
            <td><Field payment_id /></td>
            <td><Loop type="edd_product" id="{Field product_id}"><Field name /></Loop></td>
            <td><Loop type="edd_customer" id="{Field user_id}"><Field name /></Loop></td>
          </tr>
        </Loop>
      </tbody>
    </table>
  </div>

  </div>