title = $model->name; $this->params['breadcrumbs'][] = ['label' => Yii::t('common/city', 'Cities'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common/city', 'Update'), ['update', 'id' => $model->id_city], ['class' => 'btn btn-primary']) ?> = Html::a(Yii::t('common/city', 'Delete'), ['delete', 'id' => $model->id_city], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => Yii::t('common/city', 'Are you sure you want to delete this item?'), 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id_city', 'zip', 'name', 'city_code', 'latitude', 'longitude', 'cso_code', 'rig_id', 'range', 'population', 'homes', ], ]) ?>