Размер файла: 706B
<?php
$this->pageHeader = $this->pageTitle = Yii::t('Gallery', 'Deleting album');
?>
<div class="blue_block">
<strong>← <?= CHtml::link(Yii::t('Gallery', 'Back to album {album}', array('{album}' => CHtml::encode($model->name))), array('index', 'id' => $model->id)) ?></strong>
</div>
<div class="danger_alert">
<strong><?= Yii::t('Gallery', 'Total {n} photo|Total {n} photos', array($model->total_photos)) ?></strong><br />
<?= Yii::t('Gallery', 'There\'s no way to restore all photos after you click on the button below.') ?><br />
<?= CHtml::form(array('delete', 'id' => $model->id)) ?>
<?= CHtml::submitButton(Yii::t('Gallery', 'Confirm album deletion'), array('class' => 'danger')); ?>
</div>