1
0
www.mikescher.com/www/protected/views/programs/create.php

23 lines
438 B
PHP

<?php
/* @var $this ProgramsController */
/* @var $model Program */
?>
<?php
$this->pageTitle = 'Create Programs - ' . Yii::app()->name;
$this->breadcrumbs=array(
'Programs'=>array('index'),
'Create',
);
$this->menu=array(
array('label'=>'List Program', 'url'=>array('index')),
array('label'=>'Manage Program', 'url'=>array('admin')),
);
?>
<h1>Create Program</h1>
<?php $this->renderPartial('_form', array('model'=>$model)); ?>