Magento 1.7 in the code below I'm trying to get the product attribute "Minimum Qty Allowed in Shopping Cart" to display to the front end. What am I missing? Thanks
<dl class="product-sku">
<dt><?php echo $this->__('Product SKU') ?>:</dt>
<dd><?php echo $_helper->productAttribute($_product, $_product->getSKU(), 'sku') ?></dd>
<dt><?php echo $this->__('Dimensions') ?>:</dt>
<dd><?php echo $_helper->productAttribute($_product, $_product->getDimensions(), 'dimensions') ?></dd>
<dt><?php echo $this->__('Configuration') ?>:</dt>
<dd><?php echo $_helper->productAttribute($_product, $_product->getConfiguration(), 'configuration') ?></dd>
<dt><?php echo $this->__('Minimum Purchase Quantity') ?>:</dt>
<dd><?php echo $_helper->productAttribute($_product, $_product->getMinSaleQty(), 'min_sale_qty') ?></dd>
</dl>