{% load account %} {% load static %} {% block head_title %}{% endblock %} {% block extra_head %}{% endblock %}
{% block body %}
Girder
{% if messages %}
    {% for message in messages %} {% if message.level == DEFAULT_MESSAGE_LEVELS.SUCCESS %} {% include 'account/snippets/message_item.html' with color='green' icon_class='ri-checkbox-circle-line' message=message only %} {% elif message.level == DEFAULT_MESSAGE_LEVELS.WARNING %} {% include 'account/snippets/message_item.html' with color='yellow' icon_class='ri-alert-line' message=message only %} {% elif message.level == DEFAULT_MESSAGE_LEVELS.ERROR %} {% include 'account/snippets/message_item.html' with color='red' icon_class='ri-spam-3-line' message=message only %} {% elif message.level == DEFAULT_MESSAGE_LEVELS.info %} {% include 'account/snippets/message_item.html' with color='secondary' icon_class='ri-information-line' message=message only %} {% endif %} {% endfor %}
{% endif %}
{% block content %}{% endblock %}
{% endblock %} {% block extra_body %}{% endblock %}