| 1234567891011121314151617181920212223242526272829 | 
							- <?php
 
- use yii\helpers\Html;
 
- use yii\widgets\DetailView;
 
- /* @var $this yii\web\View */
 
- /* @var $model common\models\DataRank */
 
- $this->title = $model->id;
 
- $this->params['breadcrumbs'][] = ['label' => Yii::t('common', 'Data Ranks'), 'url' => ['index']];
 
- $this->params['breadcrumbs'][] = $this->title;
 
- ?>
 
- <div class="box box-success">
 
-     <div class="box-body">
 
-     <?= DetailView::widget([
 
-         'model' => $model,
 
-         'attributes' => [
 
-             'id',
 
-             'user_id',
 
-             'team_id',
 
-             'type',
 
-             'year',
 
-             'created_at',
 
-             'updated_at',
 
-             'status',
 
-         ],
 
-     ]) ?>
 
-     </div>
 
- </div>
 
 
  |