Files
newznab-tmux/resources/views/themes/admin/notification.tpl
T

42 lines
1.4 KiB
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.
{if Session::has('success')}
<div class="alert alert-success alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
{Session::get('success')}
</div>
{/if}
{if Session::has('error')}
<div class="alert alert-error alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
{Session::get('error')}
</div>
{/if}
{if Session::has('info')}
<div class="alert alert-info alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
{Session::get('info')}
</div>
{/if}
{if Session::has('warning')}
<div class="alert alert-warning alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
{Session::get('warning')}
</div>
{/if}
{if Session::has('danger')}
<div class="alert alert-danger alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
{Session::get('danger')}
</div>
{/if}