56 lines
1.1 KiB
PHP
56 lines
1.1 KiB
PHP
<?php
|
|
?>
|
|
<table class="table table-bordered table-striped table-product">
|
|
<tbody>
|
|
<tr>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product','Name')?>
|
|
</th>
|
|
<td colspan="3">
|
|
<span class="product-name"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product','Barcode')?>
|
|
</th>
|
|
<td>
|
|
<span class="product-barcode">123456789</span>
|
|
</td>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product','Product number')?>
|
|
</th>
|
|
<td>
|
|
<span class="product-number">123456789</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product','Stock'). ' (Db)'?>
|
|
</th>
|
|
<td>
|
|
<span class="product-stock"></span>
|
|
</td>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product','Count'). ' (Db)'?>
|
|
</th>
|
|
<td>
|
|
<span class="product-count">1</span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product','Sale Price')?>
|
|
</th>
|
|
<td>
|
|
<span class="product-sale-price"></span>
|
|
</td>
|
|
<th>
|
|
<?php echo Yii::t('frontend/product','Price')?>
|
|
</th>
|
|
<td>
|
|
<span class="product-price">100 000</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|