34 lines
1.4 KiB
Smarty
34 lines
1.4 KiB
Smarty
<!-- MODAL VIEW LEGUME -->
|
||
<div class="modal fade" id="modalViewLegume" tabindex="-1" role="dialog" aria-hidden="true">
|
||
<div class="modal-dialog modal-lg">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
<small class="db_ref">ref: <span>#</span></small>
|
||
<h2 class="modal-title">
|
||
<img src="img/legumes.svg">
|
||
Légume
|
||
</h2>
|
||
</div>
|
||
<table class="table modal-body">
|
||
<tbody>
|
||
<tr>
|
||
<th class="titre">nom :</th>
|
||
<td class="nom" colspan="3"></td>
|
||
</tr>
|
||
<tr class="tarifs_titre">
|
||
<th class="titre">tarifs :</th>
|
||
{foreach from=$groupes item=g}
|
||
<th class="titre groupe center" ref="{$g.ref}">{$g.nom}</th>
|
||
{/foreach}
|
||
</tr>
|
||
<tr class="nullchild">
|
||
<td></td>
|
||
<td colspan="{$groupes|@count+1}">aucun tarif</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- end MODAL VIEW LEGUME --> |