Source code for api.html
"""
Used on flash
flash(notify_success('mail sent!'))
"""
[docs]def notify(message, alert_type="primary"):
"""
Used with flash
flash(notify('blabla'))
Parameters
----------
message: str
message to be displayed
alert_type: str
bootstrap class
Returns
-------
None
"""
alert = """
<div class="shopyo-alert alert alert-{alert_type} alert-dismissible
fade show" role="alert" style="opacity: 0.98;">
{message}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
""".format(
message=message, alert_type=alert_type
)
scriptFade = """
<script>
setTimeout(function() {
$('#flashed-messages').fadeOut('fast');
}, 5000); // <-- time in milliseconds (5 secs)
</script>
"""
return alert + scriptFade