mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
16 lines
422 B
HTML
16 lines
422 B
HTML
![]() |
{% load i18n %}
|
||
|
|
||
|
<div class="alert alert-info bg-info-subtle mx-3 my-2" role="alert">
|
||
|
<div class="d-flex">
|
||
|
<div>
|
||
|
<i class="mdi mdi-information-outline p-2"></i>
|
||
|
</div>
|
||
|
<div>
|
||
|
<h4 class="alert-title">{% block title %}{% trans title %}{% endblock %}</h4>
|
||
|
{% block content %}
|
||
|
<div class="text-secondary">{% trans message %}</div>
|
||
|
{% endblock content %}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|