29 lines
1015 B
PHP
29 lines
1015 B
PHP
<div id="contentTable">
|
|
<div class="breadcrumb" data-html2canvas-ignore>
|
|
<div class="crumb svg crumbhome">
|
|
<a href="<?php echo($_['url']['index']); ?>" class="icon-home"></a>
|
|
<span style="display: none;"></span>
|
|
</div>
|
|
<div class="crumb svg crumbhome">
|
|
<span>Article</span>
|
|
</div>
|
|
<div class="crumb svg crumbhome">
|
|
<button style="margin-left:3px;" type="button" id="newProduit">Ajout article</button>
|
|
</div>
|
|
</div>
|
|
<table id="produit" class="display tabledt">
|
|
<thead>
|
|
<tr>
|
|
<th><?php p($l->t('ID'));?></th>
|
|
<th><?php p($l->t('Nom'));?></th>
|
|
<th><?php p($l->t('Designation'));?></th>
|
|
<th><?php p($l->t('Unit price without VAT'));?></th>
|
|
<th><?php p($l->t('Type'));?></th>
|
|
<th><?php p($l->t('Actions'));?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|