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

23 lines
438 B
PHP
Raw Normal View History

<?php
/* @var $this ProgramsController */
/* @var $model Program */
?>
<?php
2014-06-10 13:27:17 +02:00
$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)); ?>