// AdminWarehousesController : added informations on the shops associated to a warehouse on the 'view' action

This commit is contained in:
bMancone
2011-11-15 09:28:54 +00:00
parent cff17ab35d
commit 2fa5234c37
3 changed files with 26 additions and 10 deletions
@@ -70,6 +70,23 @@
</table>
</fieldset>
</div>
<div style="margin-top: 30px">
<fieldset>
<legend><img src="/img/t/AdminShop.gif" alt="" /> {l s='Shops'}</legend>
{l s='The following are the shops associated to this warehouse.'}
<table style="width: 400px; margin-top:20px" classe="table">
<tr>
<th>{l s='ID'}</th>
<th>{l s='Name'}</th>
{foreach $shops as $shop}
<tr>
<td>{$shop.id_shop}</td>
<td>{$shop.name}</td>
</tr>
{/foreach}
</table>
</fieldset>
</div>
<div style="margin-top: 30px">
<fieldset>
<legend><img src="/img/t/AdminStock.gif" alt="" /> {l s='Stock'}</legend>