configurationengine/source/scripts/validation_report_template.html
author m2lahtel
Tue, 10 Aug 2010 14:29:28 +0300
changeset 3 e7e0ae78773e
permissions -rw-r--r--
ConE 1.2.11 release

{% extends "cone_base.html" %}
{% block title %}Validation report{% endblock %}
{% block content %}
    <h1>Validation problems:</h1><br>

    <table class="report" id="report_data">
    <tr>
        <th class="featureName">File</th>
		<th class="featureName">Line</th>
        <th class="featureName">Type</th>
        <th class="featureName">Severity</th>
		<th class="featureName">Message</th>
    </tr>
    {% for problem in problems %}
    <tr>
        <td><a href="./{{ problem.file }}">{{ problem.file }}</td>
        <td>{{ problem.line }}</td>
        <td>{{ problem.type }}</td>
        <td>{{ problem.severity }}</td>
        <td>{{ problem.msg }}</td>
    </tr>
    {% endfor %}
    
    </table>
<script language="javascript" type="text/javascript">
//<![CDATA[
    setFilterGrid("report_data");
//]]>
</script>
{% endblock %}