mirror of
https://github.com/Karaka-Management/oms-Tasks.git
synced 2026-01-11 15:38:40 +00:00
continue implementation
This commit is contained in:
parent
42eb03eee0
commit
e2e5e08378
|
|
@ -57,11 +57,11 @@ echo $this->data['nav']->render(); ?>
|
|||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<?= $this->getData('editor')->render('task-editor'); ?>
|
||||
<?= $this->data['editor']->render('task-editor'); ?>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<?= $this->getData('editor')->getData('text')->render('task-editor', 'plain', 'fTask'); ?>
|
||||
<?= $this->data['editor']->getData('text')->render('task-editor', 'plain', 'fTask'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portlet-foot">
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ $open = $this->data['open'];
|
|||
echo $this->data['nav']->render(); ?>
|
||||
|
||||
<div class="tabview tab-2">
|
||||
<div class="box wf-100 col-xs-12">
|
||||
<div class="box">
|
||||
<ul class="tab-links">
|
||||
<li><label for="c-tab-1"><?= $this->getHtml('Overview'); ?></label></li>
|
||||
<li><label for="c-tab-2"><?= $this->getHtml('Unread'); ?></label></li>
|
||||
|
|
|
|||
|
|
@ -75,7 +75,9 @@ echo $this->data['nav']->render(); ?>
|
|||
data-tpl-value-path="/0/response/descriptionRaw"
|
||||
data-tpl-text-path="/0/response/description"
|
||||
data-value=""><?= $task->description; ?></article>
|
||||
<?php $tags = $task->getTags(); foreach ($tags as $tag) : ?>
|
||||
<?php
|
||||
$tags = $task->getTags();
|
||||
foreach ($tags as $tag) : ?>
|
||||
<span class="tag" style="background: <?= $this->printHtml($tag->color); ?>"><?= empty($tag->icon) ? '' : '<i class="' . $this->printHtml($tag->icon) . '"></i>'; ?><?= $this->printHtml($tag->getL11n()); ?></span>
|
||||
<?php endforeach; ?>
|
||||
<?php if (!empty($taskMedia)) : ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user