configurationengine/source/scripts/validation_report_template.html
changeset 3 e7e0ae78773e
equal deleted inserted replaced
2:87cfa131b535 3:e7e0ae78773e
       
     1 {% extends "cone_base.html" %}
       
     2 {% block title %}Validation report{% endblock %}
       
     3 {% block content %}
       
     4     <h1>Validation problems:</h1><br>
       
     5 
       
     6     <table class="report" id="report_data">
       
     7     <tr>
       
     8         <th class="featureName">File</th>
       
     9 		<th class="featureName">Line</th>
       
    10         <th class="featureName">Type</th>
       
    11         <th class="featureName">Severity</th>
       
    12 		<th class="featureName">Message</th>
       
    13     </tr>
       
    14     {% for problem in problems %}
       
    15     <tr>
       
    16         <td><a href="./{{ problem.file }}">{{ problem.file }}</td>
       
    17         <td>{{ problem.line }}</td>
       
    18         <td>{{ problem.type }}</td>
       
    19         <td>{{ problem.severity }}</td>
       
    20         <td>{{ problem.msg }}</td>
       
    21     </tr>
       
    22     {% endfor %}
       
    23     
       
    24     </table>
       
    25 <script language="javascript" type="text/javascript">
       
    26 //<![CDATA[
       
    27     setFilterGrid("report_data");
       
    28 //]]>
       
    29 </script>
       
    30 {% endblock %}