messages.html 542 B

1234567891011121314151617
  1. {% load helpers %}
  2. <div id="django-messages" class="toast-container position-fixed bottom-0 end-0 p-3" hx-swap-oob="true">
  3. {# Non-Field Form Errors #}
  4. {% if form and form.non_field_errors %}
  5. {% for error in form.non_field_errors.get_json_data %}
  6. {% include 'inc/toast.html' with status="danger" title="Error" message=error.message %}
  7. {% endfor %}
  8. {% endif %}
  9. {# Django Messages #}
  10. {% for message in messages %}
  11. {% include 'inc/toast.html' with status=message.level_tag|status_from_tag %}
  12. {% endfor %}
  13. </div>