add image thumbnail to task detail view, add icons to common file extensions, better layout in task attachments

This commit is contained in:
BlueTeck
2015-03-07 11:31:53 +01:00
parent 88ba0c0953
commit 5e5af86638
7 changed files with 192 additions and 33 deletions

View File

@@ -441,7 +441,8 @@ class Board extends Base
$task = $this->getTask();
$this->response->html($this->template->render('board/files', array(
'files' => $this->file->getAll($task['id']),
'files' => $this->file->getAllDocuments($task['id']),
'images' => $this->file->getAllImages($task['id']),
'task' => $task,
)));
}