continue implementation

This commit is contained in:
Dennis Eichhorn 2023-06-09 17:39:31 +00:00
parent 42eb03eee0
commit e2e5e08378
3 changed files with 6 additions and 4 deletions

View File

@ -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">

View File

@ -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>

View File

@ -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)) : ?>