Files
kupshop/web/common/templates/email/block.opening-hours.tpl
2025-08-02 16:30:27 +02:00

16 lines
517 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{$days = [1 => "{t}Pondělí{/t}", 2 => "{t}Úterý{/t}", 3 => "{t}Středa{/t}", 4 => "{t}Čtvrtek{/t}", 5 => "{t}Pátek{/t}", 6 => "{t}Sobota{/t}", 7 => "{t}Neděle{/t}"]}
<p><strong>Otevírací doba</strong></p>
<table>
{foreach $openingHours as $day => $hours}
{if isset($days[$day]) && !empty($hours)}
{$from = $hours[0]}
{$to = $hours[1]}
<tr>
<td>{$days[$day]}:&nbsp;</td>
<td>{$from} {$to}</td>
</tr>
{/if}
{/foreach}
</table>