configurationengine/source/scripts/validation_report_template.html
changeset 3 e7e0ae78773e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configurationengine/source/scripts/validation_report_template.html	Tue Aug 10 14:29:28 2010 +0300
@@ -0,0 +1,30 @@
+{% 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 %}
\ No newline at end of file