$counter++;
        }
        ?>
			</tbody>
		</table>
		<label>Notes</label><br /><?php 
        echo $production->prepareNotes();
        ?>
<br />
		<table id="approveContent">
			<tbody>
				<tr>
					<td><label>Issued and Received by </label></td>
						<?php 
        if ($production->getIssuer() != null) {
            echo "<td>" . $production->prepareIssuer() . "</td>";
        } else {
            echo "<td id=\"issuer\"><input type=\"button\" value=\"Sign Here\" class=\"signHere\" /></td>";
        }
        ?>
</td><td><label>Date </label>
						<?php 
        if ($production->getIssuer_date() != null) {
            echo $production->prepareIssuer_date("j F Y");
        } else {
            echo "<input type=\"text\" id=\"issDate\" class=\"datepicker\"></input>";
        }
        ?>
					</td>
				</tr>
		</table>