<table class="table table-hover" id="pdt_sessions">
  <thead>
    <tr>
      <th>Sl. No</th>
      <th>Batch Code</th>
      <th>Topic Name</th>
      <th>Session Start Date</th>
      <th>Session End Date</th>
      <th>Session Duration (hrs/mins)</th>
      <th style="text-align:center;">Time Slot</th>
      <th style="text-align:center;">Attendance</th>
    </tr>
  </thead>
  <tbody>
    {{#pdtsessions}}
    <tr>
      <td style="width:5%;">{{{slno}}}</td>
      <td style="width:10%;">{{{batchcode}}}</td>
      <td style="width:10%;">{{{topic}}}</td>
      <td style="width:20%;">{{{startdate}}}</td>
      <td style="width:15%;">{{{enddate}}}</td>
      <td style="width:10%;">{{{sess_duration}}}</td>
      <td style="width:10%; text-align:center;">{{{timeslot}}}</td>
      <td style="width:20%; text-align:center;">{{{attendance}}}</td>
    </tr>
    {{/pdtsessions}}
  </tbody>
</table>