1
0

Added Titles to pages

This commit is contained in:
2014-06-10 13:27:17 +02:00
parent 9a200136e7
commit 5f839356bb
23 changed files with 398 additions and 201 deletions

View File

@@ -2,6 +2,7 @@
/* @var $this LogController */
/* @var $model Log */
$this->pageTitle = 'Manage Logs - ' . Yii::app()->name;
$this->breadcrumbs=array(
'Logs'=>array('index'),

View File

@@ -4,6 +4,9 @@
?>
<?php
$this->pageTitle = 'Create Logs - ' . Yii::app()->name;
$this->breadcrumbs=array(
'Logs'=>array('index'),
'Create',

View File

@@ -3,7 +3,7 @@
/* @var $logs Log[] */
/* @var $logid integer */
$this->pageTitle=Yii::app()->name;
$this->pageTitle = 'Log - ' . Yii::app()->name;
$this->breadcrumbs=
[

View File

@@ -4,6 +4,10 @@
?>
<?php
$this->pageTitle = 'Update Log - ' . Yii::app()->name;
$this->breadcrumbs=array(
'Logs'=>array('index'),
$model->title=>array('view','id'=>$model->ID),

View File

@@ -4,6 +4,10 @@
?>
<?php
$this->pageTitle = 'View Log - ' . Yii::app()->name;
$this->breadcrumbs=array(
'Logs'=>array('index'),
$model->title,