{if $row.tpl_block|default:'' == 'notification_list'}
{if $subscribers.staff != ''}{t}Staff{/t}: {$subscribers.staff|replace:"<":"<"|replace:">":">"}{/if}
{if $subscribers.staff != '' and $subscribers.customers != ''}
{/if}
{if $subscribers.customers != ''}{t}Other{/t}: {$subscribers.customers|replace:"<":"<"|replace:">":">"}{/if}
{elseif $row.tpl_block|default:'' == 'associated_issues'}
{section name="i" loop=$issue.associated_issues_details}
{strip}
#{$issue.associated_issues_details[i].associated_issue}
{if not $smarty.section.i.last},{/if}
{/strip}
{sectionelse}
{t}No issues associated{/t}
{/section}
{elseif $row.tpl_block|default:'' == 'expected_resolution'}
{if $issue.iss_expected_resolution_date == 0}
{t}No resolution date given{/t}
{else}
{$issue.iss_expected_resolution_date|escape:"html"}
{/if}
{elseif $row.tpl_block|default:'' == 'duplicates'}
{if $issue.iss_duplicated_iss_id}
{t}Duplicate of{/t}:
#{$issue.iss_duplicated_iss_id}
{/if}
{if $issue.duplicates_details|@count > 0}
{if $issue.iss_duplicated_iss_id}
{/if}
{t}Duplicated by{/t}:
{section name="i" loop=$issue.duplicates_details}
{strip}
#{$issue.duplicates_details[i].issue_id}
{if not $smarty.section.i.last}, {/if}
{/strip}
{/section}
{/if}
{elseif $row.tpl_block|default:'' == 'authorized_repliers'}
{if $issue.authorized_repliers.users|@count > 0}
{t}Staff{/t}:
{section name="replier" loop=$issue.authorized_repliers.users}
{strip}
{$issue.authorized_repliers.users[replier].replier|replace:"<":"<"|replace:">":">"}
{if $smarty.section.replier.last != 1}, {/if}
{/strip}
{/section}
{/if}
{if $issue.authorized_repliers.other|@count > 0}
{t}Other{/t}:
{section name="replier" loop=$issue.authorized_repliers.other}
{strip}
{$issue.authorized_repliers.other[replier].replier|replace:"<":"<"|replace:">":">"}
{if $smarty.section.replier.last != 1}, {/if}
{/strip}
{/section}
{/if}
{else}
{$row.data|escape:"html"}
{/if}