view.php
973 Bytes
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @var $this yii\web\View */
/* @var $model common\models\Currency */
$this->title = "Лог загрузки файла";
$this->params['breadcrumbs'][] = ['label' => 'Currencies', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="log-view">
<h3><?= Html::encode($this->title) ?></h3>
<?= DetailView::widget([
'model' => $model,
'attributes' => [
['attribute' => 'error',
'value' => $model->error ? 'C ошибкой' : 'Успешно',
],
['attribute' =>'record_type',
'value' => $model->record_type == 1 ? 'Фоновая (ручная) загрузка' : 'Загрузка из вложений в почту',
],
'importer_id',
'time_start',
'time_end',
'file_name',
'log_msg',
],
]) ?>
</div>