templates.fragments.validationMessagesTemplate.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-website Show documentation
Show all versions of spincast-website Show documentation
Source code for the https://www.spincast.org website.
{% for message in validation.messages %}
{% set symbol = "✘ " %}
{% set msgClass = "msgError" %}
{% if message.level == "SUCCESS" %}
{% set msgClass = "msgSuccess" %}
{% set symbol = "✔ " %}
{% elseif message.level == "WARNING" %}
{% set msgClass = "msgWarning" %}
{% set symbol = "!" %}
{% endif %}
{{symbol | raw}}{{message.text}}
{% endfor %}