18 lines
759 B
Twig
18 lines
759 B
Twig
<li class="content"
|
|
title="{{ postEvent('Live.renderActionTooltip', action, visitInfo) }}">
|
|
<div>
|
|
{% if action.contentInteraction %}
|
|
<img src='{{ action.iconSVG|default(action.icon) }}' title='{{ 'Contents_ContentInteraction'|translate }}'
|
|
class="action-list-action-icon content-interaction">
|
|
{% else %}
|
|
<img src='{{ action.iconSVG|default(action.icon) }}' title='{{ 'Contents_ContentImpression'|translate }}'
|
|
class="action-list-action-icon content-impression">
|
|
{% endif %}
|
|
{% if action.contentInteraction %}
|
|
[{{ action.contentInteraction }}]
|
|
{% endif %}
|
|
{{ action.contentName }} -
|
|
{{ action.contentPiece }}
|
|
</div>
|
|
</li>
|