49 lines
2.1 KiB
Smarty
49 lines
2.1 KiB
Smarty
<table style="width: 100%">
|
|
{$report_activities = $report_notification.report_activities}
|
|
{$notification = $report_notification.notification}
|
|
<tr>
|
|
<td>
|
|
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%">
|
|
<tr>
|
|
<td>
|
|
<strong>Nové události v Activity logu</strong><br>
|
|
na e-shopu {ldelim}WEB_NAZEV{rdelim}
|
|
</td>
|
|
<td style="text-align: right;" align="right">
|
|
{if $notification.last_notifications}od {$notification.last_notifications|format_date:'d.m.Y H:i:s'}<br>{/if}
|
|
{if $notification.last_sync}do {$notification.last_sync|format_date:'d.m.Y H:i:s'}{/if}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 50px 0;" id="report_activities">
|
|
<table border="0" cellspacing="0" cellpadding="0" style="width: 100%">
|
|
{foreach $report_activities as $report_activity}
|
|
<tr>
|
|
<td style="padding: 15px 0; border-bottom: 1px solid #bac0c9;" valign="top">
|
|
Typ: {$report_activity.type}, {$report_activity.date|format_date:'d.m.Y H:i:s'}
|
|
<p><strong>{$report_activity.report}</strong></p>
|
|
<a target="_blank" href="{$report_activity.url}">Zobrazit v administraci</a>
|
|
</td>
|
|
<td align="right" valign="top" style="padding: 15px 0; text-align: right; border-bottom: 1px solid #bac0c9;">
|
|
<span class="label-severity label-severity-{$report_activity.severity_index}">
|
|
{$report_activity.severity}
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
{if $notification.note}
|
|
<tr>
|
|
<td colspan="2" style="padding-top: 15px;">
|
|
<strong>Instrukce</strong><br>
|
|
{$notification.note|nl2br nofilter}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|