{# This template renders a single log entry row. #} {# Here we define a dictionary to map a log level to a color for the status badge #} {% set level_colors = { 0: '#808080', 10: '#5cb85c', 20: '#5bc0de', 30: '#f0ad4e', 40: '#d9534f' } %}
{{ log.status_text }} {{ log.html_message | safe }} {% if log.html_sub_messages %}
    {% for msg in log.html_sub_messages %}
  • {{ msg }}
  • {% endfor %}
{% endif %}