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

23 lines
409 B
PHP
Raw Normal View History

2014-06-06 19:31:05 +02:00
<?php
/* @var $this LogController */
/* @var $model Log */
?>
<?php
2014-06-10 13:27:17 +02:00
$this->pageTitle = 'Create Logs - ' . Yii::app()->name;
2014-06-06 19:31:05 +02:00
$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)); ?>