?>
					<?php 
    if (strlen($auto->getInterior()) > 0) {
        ?>
						<tr>
							<th>Interior:</th>
							<td><?php 
        echo $auto->getInterior();
        ?>
</td>
						</tr>
					<?php 
    }
    ?>
					<?php 
    foreach ($auto->getFeatures() as $feature) {
        ?>
						<tr>
							<th><?php 
        echo $feature->getFeatureTitle();
        ?>
</th>
							<td><?php 
        echo $feature->getValue();
        ?>
</td>
						</tr>
					<?php 
    }
    ?>
				</table>