Cin7 templates. Some changes for Sandata. Downlaoded new templates.

This commit is contained in:
Norm Rasmussen
2024-04-17 17:28:06 -04:00
parent ca62198d9c
commit 7de269b38b
125 changed files with 95 additions and 82 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 %}