summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/config_items/item-failure.html
blob: 0b87fbdbdaa49a3668d2398d490b65029504e416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "config_items/item.html" %}
{% load syntax_coloring %}

{% block item_details %}
<div class='entry_list'>
    <div class='entry_list_head'>
        <h3>This item failed to bind on the server</h3>
    </div>
    <div class='diff_wrapper'>
        {{ item.message|syntaxhilight:"py" }}
    </div>
</div>
{% endblock %}