Open project activities in modal box

This commit is contained in:
Frederic Guillot
2017-01-08 12:23:25 -05:00
parent e377f450ad
commit ea2cbb76d5
5 changed files with 8 additions and 10 deletions

View File

@@ -19,10 +19,9 @@ class ActivityController extends BaseController
{
$project = $this->getProject();
$this->response->html($this->helper->layout->app('activity/project', array(
$this->response->html($this->template->render('activity/project', array(
'events' => $this->helper->projectActivity->getProjectEvents($project['id']),
'project' => $project,
'title' => t('%s\'s activity', $project['name'])
)));
}