mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
10 lines
630 B
Twig
10 lines
630 B
Twig
{% set oFirstEntry = aEntryGroup.entries|first %}
|
|
{# Note: Entry groups are hidden by default to avoid a visual glitch. #]
|
|
{# Otherwise when the page is loaded, all the entry groups are displayed for a brief moment, then they are filtered on the options of the currently displayed tab #}
|
|
<div class="ibo-activity-panel--entry-group {% if oFirstEntry.IsFromCurrentUser() %}ibo-is-current-user{% endif %} ibo-is-hidden"
|
|
data-role="ibo-activity-panel--entry-group"
|
|
data-entry-group-author-login="{{ oFirstEntry.GetAuthorLogin() }}">
|
|
{% for oEntry in aEntryGroup.entries %}
|
|
{{ render_block(oEntry) }}
|
|
{% endfor %}
|
|
</div> |