Skip to content
Snippets Groups Projects
Commit 52393cbc authored by Satish's avatar Satish
Browse files

Fixes #684 - Dashboard Tag Cloud - Only shows Tag's that are created by the User

parent 9d9897bd
No related branches found
No related tags found
No related merge requests found
......@@ -6,14 +6,14 @@
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************}
{strip}
{strip}
<div class="tagsContainer" id="tagCloud">
{foreach item=TAG_MODEL from=$TAGS name=tagCounter}
{foreach item=TAG_MODEL key=TAG_ID from=$TAGS}
{assign var=TAG_LABEL value=$TAG_MODEL->getName()}
{assign var=TAG_ID value=$TAG_MODEL->getId()}
<span class="tag" title="{$TAG_MODEL->getName()}" data-type="{$TAG_MODEL->getType()}" data-id="{$TAG_ID}">
<span class="tagName display-inline-block textOverflowEllipsis cursorPointer" data-tagid="{$TAG_ID}">{$TAG_MODEL->getName()}</span>
<span class="tag" title="{$TAG_LABEL}" data-type="{$TAG_MODEL->getType()}" data-id="{$TAG_ID}">
<span class="tagName display-inline-block textOverflowEllipsis cursorPointer" data-tagid="{$TAG_ID}">{$TAG_LABEL}</span>
</span>
{/foreach}
</div>
{/strip}
\ No newline at end of file
{/strip}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment