<div class="row">
  <div class="col-lg-12 mt-3">
    <p>
      <a style="color: black;" title="Main Module" href="/warehouses/list">
        <i class="fa fa-chevron-circle-left"></i> &nbsp; Zurück zur Liste der Lager
      </a>
    </p>

    <div class="card card-info mt-3">
      <div class="card-header align-items-center d-flex">
        <h4 class="card-title mb-0 flex-grow-1">
          <%= sectionTitle %>
        </h4>
        <div class="flex-shrink-0"></div>
      </div>

      <div class="card-body">
        <div class="row g-3">
          <div class="table-responsive">
            <table id="table-detail" class="table table-striped">
              <tbody>
                <!-- Warehouse Name -->
                <tr>
                  <td width="20%">Lagername</td>
                  <td>
                    <%= dataInfo.warehouse_name || 'N/A' %>
                  </td>
                </tr>

                <!-- Location -->
                <tr>
                  <td width="20%">Standort</td>
                  <td>
                    <%= dataInfo.location || 'N/A' %>
                  </td>
                </tr>

                <!-- Created At -->
                <tr>
                  <td width="20%">Erstellt am</td>
                  <td>
                    <%= dataInfo.created_at ? new Date(dataInfo.created_at).toLocaleDateString('de-DE') : 'N/A' %>
                  </td>
                </tr>

                <!-- Updated At -->
                <tr>
                  <td width="20%">Zuletzt aktualisiert</td>
                  <td>
                    <%= dataInfo.updated_at ? new Date(dataInfo.updated_at).toLocaleDateString('de-DE') : 'N/A' %>
                  </td>
                </tr>

                <!-- Optional: View number of items in warehouse -->
                <% if (typeof totalItems !== 'undefined') { %>
                <tr>
                  <td width="20%">Anzahl der Artikel</td>
                  <td>
                    <%= totalItems %>
                  </td>
                </tr>
                <% } %>
              </tbody>
            </table>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
