Getting ready for next Anthology project - the revamped searchbar. Downloaded templates. Cleaned up some todos. Added two academies to Cin7's backup of courses. Other notes

This commit is contained in:
Norm Rasmussen
2024-03-28 21:30:03 -04:00
parent ee29257e17
commit 81884f7fec
91 changed files with 2186 additions and 49 deletions

View File

@ -0,0 +1,19 @@
{% if messages.alert.size > 0 %}
<div class="np-alert np-alert-error">
<div class="np-alert-wrapper">
{% for message in messages.alert %}
<div>{{ message }}</div>
{% endfor %}
</div>
</div>
{% endif %}
{% if messages.notice.size > 0 %}
<div class="np-alert np-alert-success">
<div class="np-alert-wrapper">
{% for message in messages.notice %}
<div>{{ message }}</div>
{% endfor %}
</div>
</div>
{% endif %}