add kulcsok, add tartós beszedés, add ticket type with intallments
This commit is contained in:
29
backend/views/ticket-installment-request/index.php
Normal file
29
backend/views/ticket-installment-request/index.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
use yii\grid\GridView;
|
||||
use yii\widgets\ListView;
|
||||
use yii\base\Widget;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $searchModel backend\models\TicketInstallmentRequestSearch */
|
||||
/* @var $dataProvider yii\data\ActiveDataProvider */
|
||||
|
||||
$this->title = Yii::t('common/ticket_installment_request', 'Bérlet fizetési megbízások');
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="ticket-installment-request-index">
|
||||
|
||||
<h1><?= Html::encode($this->title) ?></h1>
|
||||
<?php echo $this->render('_search', ['model' => $searchModel]); ?>
|
||||
|
||||
|
||||
<?php
|
||||
echo ListView::widget([
|
||||
'dataProvider' => $dataProvider,
|
||||
'itemView' => '_index_view'
|
||||
]);
|
||||
?>
|
||||
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user