cmc-sales/php/app/views/products/index.ctp

14 lines
404 B
Plaintext
Raw Normal View History

<div class="products index">
2010-01-10 10:05:04 -08:00
<h2><?php __('Product List');?></h2>
<h3>Choose a Principle to view their Products</h3>
</div>
2010-01-10 10:05:04 -08:00
<div>
<ul class="principlesList">
<?php foreach($principles as $principle) {
echo "<li>".$html->link($principle['Principle']['name'], array('action'=>'view_principle', $principle['Principle']['id']))."</li>";
}
?>
</ul>
</div>