You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
309 B

6 months ago
{% load static %}
{% if messages %}
<script src="{% static 'client/js/jquery.min.js' %}"></script>
<script src="{% static 'client/js/toastr.min.js' %}"></script>
{% for message in messages %}
<script type="text/javascript">
toastr.{{ message.tags }} ("{{ message }}");
</script>
{% endfor %}
{% endif %}