?>
						<tr>
							<th><?php 
        echo \SquirrelsInventory\Controller::getMileageLabel(TRUE);
        ?>
:</th>
							<td><?php 
        echo number_format($auto->getOdometerReading());
        ?>
</td>
						</tr>
					<?php 
    }
    ?>
					<?php 
    if (strlen($auto->getExterior()) > 0) {
        ?>
						<tr>
							<th>Exterior:</th>
							<td><?php 
        echo $auto->getExterior();
        ?>
</td>
						</tr>
					<?php 
    }
    ?>
					<?php 
    if (strlen($auto->getInterior()) > 0) {
        ?>
						<tr>
					</th>
					<td>
						<input id="squirrels_odometer_reading" value="<?php 
        echo number_format($auto->getOdometerReading());
        ?>
" />
					</td>
				</tr>

				<tr>
					<th>
						<label for="squirrels_exterior">Exterior:</label>
					</th>
					<td>
						<input id="squirrels_exterior" placeholder="ex: Red" value="<?php 
        echo htmlspecialchars($auto->getExterior());
        ?>
" />
					</td>
					<th>
						<label for="squirrels_interior">Interior:</label>
					</th>
					<td>
						<input id="squirrels_interior" placeholder="ex: Black or Leather" value="<?php 
        echo htmlspecialchars($auto->getInterior());
        ?>
" />
					</td>
				</tr>

				<tr>