add frontend changes
This commit is contained in:
43
frontend/views/ticket/_user_cart.php
Normal file
43
frontend/views/ticket/_user_cart.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
use yii\bootstrap\Html;
|
||||
use kartik\widgets\ActiveForm;
|
||||
?>
|
||||
|
||||
|
||||
<h1><?php echo Yii::t('frontend/product','User Cart')?></h1>
|
||||
<div class="row">
|
||||
<div class='col-md-12 '>
|
||||
<div class="user-cart">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<?php echo Yii::t('frontend/product', 'Product name')?>
|
||||
</th>
|
||||
<th>
|
||||
<?php echo Yii::t('frontend/product', 'Count')?>
|
||||
</th>
|
||||
<th>
|
||||
<?php echo Yii::t('frontend/product', 'Currency')?>
|
||||
</th>
|
||||
<th>
|
||||
<?php echo Yii::t('frontend/product', 'Item Price')?>
|
||||
</th>
|
||||
<th>
|
||||
<?php echo Yii::t('frontend/product', 'Total Price')?>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class='row' >
|
||||
<div class='col-md-3'>
|
||||
<?php $form = ActiveForm::begin([]); ?>
|
||||
<?php echo Html::submitButton(Yii::t('frontend/product', "Paid"),[ 'id' => 'btn_pay_user_cart', 'class' => 'btn btn-primary btn-block' , 'name' => 'payout_user_cart']) ?>
|
||||
<?php ActiveForm::end(); ?>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user