We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628753c commit 800f616Copy full SHA for 800f616
1 file changed
packages/divbase-api/src/divbase_api/templates/components/announcements.html
@@ -1,6 +1,6 @@
1
{% for announcement in announcements %}
2
<div class="alert alert-{{ announcement.level }}" role="alert">
3
- <h3 class="alert-heading">
+ <p><strong>
4
{% if announcement.level == "danger" %}
5
<i class="bi bi-exclamation-triangle-fill me-2"></i>
6
{% elif announcement.level == "success" %}
@@ -11,7 +11,7 @@ <h3 class="alert-heading">
11
<i class="bi bi-info-circle-fill me-2"></i>
12
{% endif %}
13
{{ announcement.heading }}
14
- </h3>
+ </strong>
15
<p>{{ announcement.message }}</p>
16
</div>
17
{% endfor %}
0 commit comments