A migration workedcd ../.. Marking a learner as complete is done. Woohoo.

This commit is contained in:
Norm Rasmussen
2024-09-05 15:04:49 -04:00
parent 3643bcba35
commit c05336900d
102 changed files with 3030 additions and 121 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 %}