Просмотр файла vkclone-0.0.1/protected/modules/groups/views/group/confirm.php

Размер файла: 646B
<?php
$this->pageHeader = $this->pageTitle = Yii::t('Groups', 'Deleting group');
?>

<div class="blue_block">
	<strong>← <?= CHtml::link(Yii::t('Groups', 'Back to group'), array('index', 'id' => $model->id)) ?></strong>
</div>

<div class="danger_alert">
	<strong><?= Yii::t('Groups', 'Total {n} member|Total {n} members', array($model->total_members)) ?></strong><br />
	<?= Yii::t('Groups', 'There\'s no way to restore all posts after you click on the button below.') ?><br />
	<?= CHtml::form(array('delete', 'id' => $model->id)) ?>
	<?= CHtml::submitButton(Yii::t('Groups', 'Confirm group deletion'), array('class' => 'danger')); ?>
</div>