table sorting improvements

This commit is contained in:
Dennis Eichhorn 2021-03-07 21:38:36 +01:00
parent 94d40f0f4c
commit cf14041157

View File

@ -28,11 +28,11 @@ echo $this->getData('nav')->render(); ?>
<a href="<?= \phpOMS\Uri\UriFactory::build('{/prefix}qa/question?{?}&id=' . $question->getId()); ?>"><?= $this->printHtml($question->name); ?></a> <a href="<?= \phpOMS\Uri\UriFactory::build('{/prefix}qa/question?{?}&id=' . $question->getId()); ?>"><?= $this->printHtml($question->name); ?></a>
</div> </div>
</div> </div>
<div class="tags"> </div>
<?php $tags = $question->getTags(); foreach ($tags as $tag) : ?> <div class="portlet-foot">
<span class="tag red"><?= $this->printHtml($tag->getTitle()); ?></span> <?php $tags = $question->getTags(); foreach ($tags as $tag) : ?>
<?php endforeach; ?> <span class="tag red"><?= $this->printHtml($tag->getTitle()); ?></span>
</div> <?php endforeach; ?>
</div> </div>
</section> </section>
<?php endforeach; ?> <?php endforeach; ?>