<?php
$this->breadcrumbs = array(
    'Aporte Voluntarios' => array('index'),
    $model->id=>array('view', 'id' => $model->id),
    'Update',
);

$this->menu=array(
    array('label' => 'List AporteVoluntario','url' => array('index')),
    array('label' => 'Create AporteVoluntario','url' => array('create')),
    array('label' => 'View AporteVoluntario','url' => array('view','id' => $model->id)),
    array('label' => 'Manage AporteVoluntario','url' => array('admin')),
);
?>

<h3>Modificar aporte especial</h3>

<?php
    foreach(Yii::app()->user->getFlashes() as $key => $message) {
        echo '<div class="alert alert-' . $key . '">' . $message . "</div>\n";
    }
?>

<?= $this->renderPartial('_form_AE', array(
    'model' => $model,
    'view' => $view,
)); ?>
