Copied Cin7 Templates to update their pages to allow for more openness.

This commit is contained in:
Norm Rasmussen
2024-08-15 16:44:04 -04:00
parent bae1307bb4
commit cad4a27584
123 changed files with 5089 additions and 168 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 %}