mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
61 lines
2.3 KiB
HTML
61 lines
2.3 KiB
HTML
{% load helpers %}
|
|
|
|
<div id="django-messages" class="toast-container">
|
|
{# Django Messages #}
|
|
|
|
{# Form Field Errors #}
|
|
{% if form and form.errors %}
|
|
{% for field in form %}
|
|
{% for error in field.errors %}
|
|
<div class="django-message toast align-items-center border-0 bg-danger" data-django-type="field-error" role="alert" aria-live="assertive" aria-atomic="true" data-bs-delay="60000">
|
|
<div class="toast-header bg-danger">
|
|
<strong class="me-auto">
|
|
<i class="mdi mdi-{{ "danger"|icon_from_status }} me-1"></i>
|
|
{{ field.label }}
|
|
</strong>
|
|
<button type="button" class="btn-close me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
|
|
</div>
|
|
<div class="toast-body">
|
|
{{ error|escape }}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{# Non-Field Form Errors #}
|
|
{% if form and form.non_field_errors %}
|
|
{% for error in form.non_field_errors.get_json_data %}
|
|
<div class="django-message toast align-items-center border-0 bg-danger" data-django-type="non-field-error" role="alert" aria-live="assertive" aria-atomic="true" data-bs-delay="10000">
|
|
<div class="d-flex">
|
|
<div class="toast-body">
|
|
<i class="mdi mdi-{{ "danger"|icon_from_status }} me-1"></i>
|
|
{{ error.message }}
|
|
</div>
|
|
<button type="button" class="btn-close me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{# Django Messages #}
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
{% with message.level_tag|status_from_tag as status %}
|
|
{% with status|icon_from_status as icon %}
|
|
<div class="django-message toast align-items-center border-0 bg-{{ status }}" data-django-type="message" role="alert" aria-live="assertive" aria-atomic="true" data-bs-delay="10000">
|
|
<div class="d-flex">
|
|
<div class="toast-body">
|
|
<i class="mdi mdi-{{ icon }} me-1"></i>
|
|
{{ message }}
|
|
</div>
|
|
<button type="button" class="btn-close me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
|
|
</div>
|
|
</div>
|
|
{% endwith %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
</div>
|