mirror of
https://github.com/Karaka-Management/oms-Tasks.git
synced 2026-02-15 22:28:41 +00:00
bug fixes and item management improvements
This commit is contained in:
parent
563987c976
commit
9bf4525c25
|
|
@ -74,6 +74,13 @@ return ['Tasks' => [
|
||||||
'Upload' => 'Upload',
|
'Upload' => 'Upload',
|
||||||
'Week' => 'Week',
|
'Week' => 'Week',
|
||||||
'Year' => 'Year',
|
'Year' => 'Year',
|
||||||
|
'YourOpen' => 'Your Open',
|
||||||
|
'OpenGiven' => 'Open Given',
|
||||||
|
'All' => 'All',
|
||||||
|
'For' => 'For',
|
||||||
|
'UnreadChanges' => 'Unread Changes',
|
||||||
|
'Unread' => 'Unread',
|
||||||
|
'Overview' => 'Overview',
|
||||||
'forwarded_to' => 'forwarded to',
|
'forwarded_to' => 'forwarded to',
|
||||||
'priority_change' => '%s set the priority on %s to',
|
'priority_change' => '%s set the priority on %s to',
|
||||||
'status_change' => '%s set the status on %s to',
|
'status_change' => '%s set the status on %s to',
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<div class="portlet">
|
<div class="portlet">
|
||||||
<div class="portlet-head"><?= $this->getHtml('AllTasks'); ?><i class="fa fa-download floatRight download btn"></i></div>
|
<div class="portlet-head"><?= $this->getHtml('All'); ?><i class="fa fa-download floatRight download btn"></i></div>
|
||||||
<div class="slider">
|
<div class="slider">
|
||||||
<table id="taskList" class="default sticky">
|
<table id="taskList" class="default sticky">
|
||||||
<thead>
|
<thead>
|
||||||
|
|
|
||||||
|
|
@ -74,10 +74,10 @@ class TaskView extends View
|
||||||
->execute();
|
->execute();
|
||||||
|
|
||||||
if ($profile->id === 0 || $profile->image->getPath() === '') {
|
if ($profile->id === 0 || $profile->image->getPath() === '') {
|
||||||
return UriFactory::build('{/base}/' . $this->defaultProfileImage->getPath());
|
return UriFactory::build($this->defaultProfileImage->getPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
return UriFactory::build('{/base}/' . $profile->image->getPath());
|
return UriFactory::build($profile->image->getPath());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user