<div class="row">
			<div class="col-md-12">

				<h3 class="squirrels-title">
					<?php 
    echo $auto->getYear() > 0 ? $auto->getYear() : '';
    ?>
					<?php 
    echo $auto->getMake()->getTitle();
    ?>
					<?php 
    echo $auto->getModel()->getTitle();
    ?>
					-
					<?php 
    if ($auto->getPrice() === NULL || $auto->getPrice() == 0) {
        ?>
						Call for Price
					<?php 
    } else {
        ?>
						$<?php 
        echo number_format($auto->getPrice(), 2);
        ?>
						<?php 
        echo $auto->getPricePostfix();
        ?>
					<?php 
    }
    ?>
				</h3>
					</th>
					<td>
						<input id="squirrels_interior" placeholder="ex: Black or Leather" value="<?php 
        echo htmlspecialchars($auto->getInterior());
        ?>
" />
					</td>
				</tr>

				<tr>
					<th>
						<label for="squirrels_price">Price:</label>
					</th>
					<td>
						<input id="squirrels_price" value="$<?php 
        echo number_format($auto->getPrice(), 2);
        ?>
" />
					</td>
					<th>
						<label for="squirrels_price_postfix">Text After Price:</label>
					</th>
					<td>
						<input id="squirrels_price_postfix" value="<?php 
        echo esc_html($auto->getPricePostfix());
        ?>
" />
					</td>
				</tr>

				<tr>