Reputation: 1844
Trying to put those notification system on my templates.
I use a:
{% for message in messages %}
<<What I need to put here to create a notifiy for each error message??>>
{% endfor %}
Upvotes: 0
Views: 1247
Reputation: 1844
Solved with:
<script>
{% for message in messages %}
$(document).ready(function() {
$.pnotify({
title: '{{ message.tags|upper }}',
text: '{{ message }}.',
type: '{{ message.tags }}',
hide: false,
styling: 'bootstrap',
closer_hover: false,
sticker_hover: false
});
});
{% endfor %}
</script>
Upvotes: 1