<!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
      <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
    <![endif]-->

  </head>
  <body>

    <div class="container">

      <b>Tracetec Debt Recovery - Reports</b>

      <p><br>Below is a list of debt recovery runs for the selected month period:</p>
      
      <p><?php 
echo $date_picker->render(true);
?>
</p>

      <p>&nbsp;</p>

      <?php 
$debt_recovery = Model_Debt_Recovery::find_all_by_month_and_year($date_picker->getMonth(), $date_picker->getYear());
if (count($debt_recovery) > 0) {
    ?>
      <table width="95%" border="1">
          <thead>
              <tr>
                  <th>Month</th>
                  <th>Debit Date</th>
                  <th>Data File</th>
?>
      <p><br>Select a CSV file that contains the list of debtors for the selected month.</p>

      <p>&nbsp;</p>

      <form method="post" action=""  enctype="multipart/form-data">
          <input type="hidden" name="debt_recovery_id" value="<?php 
echo $recovery_id;
?>
" />
          <table width="50%">
              <thead />
              <tbody>
                  <tr>
                      <td>Date:</td><td><?php 
echo $date_picker->render(false, true);
?>
</td>
                  </tr>
                  <tr>
                      <td>Debit Date:</td>
                      <td>
                          <select>
                              <option selected><?php 
echo $debt_recovery->get_debit_date()->debit_date_description;
?>
</option>
                          </select>
                      </td>
                  </tr>
                  <tr>