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

23 lines
409 B
PHP

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