Move dashboard menu for calendar and activity stream
This commit is contained in:
6
app/Template/calendar/project.php
Normal file
6
app/Template/calendar/project.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?= $this->projectHeader->render($project, 'CalendarController', 'show') ?>
|
||||
|
||||
<?= $this->calendar->render(
|
||||
$this->url->href('CalendarController', 'projectEvents', array('project_id' => $project['id'])),
|
||||
$this->url->href('CalendarController', 'save', array('project_id' => $project['id']))
|
||||
) ?>
|
||||
@@ -1,9 +0,0 @@
|
||||
<section id="main">
|
||||
<?= $this->projectHeader->render($project, 'CalendarController', 'show') ?>
|
||||
|
||||
<?= $this->calendar->render(
|
||||
$this->url->href('CalendarController', 'project', array('project_id' => $project['id'])),
|
||||
$this->url->href('CalendarController', 'save', array('project_id' => $project['id']))
|
||||
) ?>
|
||||
|
||||
</section>
|
||||
4
app/Template/calendar/user.php
Normal file
4
app/Template/calendar/user.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?= $this->calendar->render(
|
||||
$this->url->href('CalendarController', 'userEvents', array('user_id' => $user['id'])),
|
||||
$this->url->href('CalendarController', 'save')
|
||||
) ?>
|
||||
Reference in New Issue
Block a user