1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model common\modules\i18n\models\I18nSourceMessage */
- $this->title = $model->id;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('backend', 'I18n Source Messages'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="i18n-source-message-view">
- <p>
- <?php echo Html::a(Yii::t('backend', 'Update'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
- <?php echo Html::a(Yii::t('backend', 'Delete'), ['delete', 'id' => $model->id], [
- 'class' => 'btn btn-danger',
- 'data' => [
- 'confirm' => Yii::t('backend', 'Are you sure you want to delete this item?'),
- 'method' => 'post',
- ],
- ]) ?>
- </p>
- <?php echo DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'category',
- 'message:ntext',
- ],
- ]) ?>
- </div>
|