alert.tpl 420 B

12345678910111213
  1. <div class="alert alert-{if $type eq "error"}danger{elseif $type}{$type}{else}info{/if}{if $textcenter} text-center{/if}{if $additionalClasses} {$additionalClasses}{/if}{if $hide} w-hidden{/if}"{if $idname} id="{$idname}"{/if}>
  2. {if $errorshtml}
  3. <strong>{lang key='clientareaerrors'}</strong>
  4. <ul>
  5. {$errorshtml}
  6. </ul>
  7. {else}
  8. {if $title}
  9. <h2>{$title}</h2>
  10. {/if}
  11. {$msg}
  12. {/if}
  13. </div>