#if history_information_list?has_content>
<@table striped=true condensed=true responsive=false hover=false>
<@tr>
<@th> #i18n{workflow.resource_history.row_action_name} @th>
<@th> #i18n{workflow.resource_history.row_action_user}@th>
<@th> #i18n{workflow.resource_history.row_action_date} @th>
<@th> #i18n{workflow.resource_history.row_task_information}@th>
@tr>
<#list history_information_list as history_information>
<@tr>
<@td>${history_information.resource_history.action.name}@td>
<@td>
<#if history_information.user_history?exists>
<#if adminAvatar>
<@img class='direct-chat-img' url='servlet/plugins/adminavatar/avatar?id_user=${history_information.user_history.userId!""}' alt='Avatar' title='Avatar' />
#if>
${history_information.resource_history.userAccessCode!''} ${history_information.user_history.firstName} ${history_information.user_history.lastName}
#if>
@td>
<@td>
${history_information.resource_history.creationDate}
@td>
<@td>
<#list history_information.task_information_list as task_information>
${task_information}
#list>
@td>
@tr>
#list>
@table>
<#else>
<@alert class='danger'>#i18n{workflow.resource_history.history_empty}@alert>
#if>