paniers/public_html_admin/templates/legumes/legume_modal_view.tpl

34 lines
1.4 KiB
Smarty
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 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 -->